diff --git a/ChangeLog b/ChangeLog index 256001a8cb..c226dd6ec9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -41,6 +41,9 @@ VerboseMultiSubmit, ReplaceHelpImg + Ajaxified "Create View" functionality + [import] New plugin: import mediawiki + Add Ajax support to Fast filter in order to search the term in all database tables +- bug #3535015 [navi] DbFilter, TableFilter clear button hidden on Chrome + +3.5.3.0 (not yet released) 3.5.2.0 (not yet released) - bug #3521416 [interface] JS error when editing index diff --git a/db_operations.php b/db_operations.php index 7b24accb0e..aca47a864a 100644 --- a/db_operations.php +++ b/db_operations.php @@ -631,9 +631,10 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) { ?> $test_query = ' SELECT * - FROM ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' . $common_functions->backquote($cfgRelation['pdf_pages']) . ' + FROM ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) + . '.' . $common_functions->backquote($cfgRelation['pdf_pages']) . ' WHERE db_name = \'' . $common_functions->sqlAddSlashes($db) . '\''; - $test_rs = PMA_query_as_controluser($test_query, null, PMA_DBI_QUERY_STORE); + $test_rs = PMA_queryAsControlUser($test_query, null, PMA_DBI_QUERY_STORE); /* * Export Relational Schema View diff --git a/db_search.php b/db_search.php index 1a2f2b9e56..f6606ba910 100644 --- a/db_search.php +++ b/db_search.php @@ -103,7 +103,7 @@ $sub_part = ''; if ( $GLOBALS['is_ajax_request'] != true) { include 'libraries/db_info.inc.php'; - echo '
'; + $response->addHTML('
'); } /** @@ -200,78 +200,134 @@ if (isset($_REQUEST['submit_search'])) { return $sql; } // end of the "PMA_getSearchSqls()" function + $response->addHTML( + PMA_dbSearchGetSearchResults( + $tables_selected, $searched, $option_str, + $search_str, $search_option, (! empty($field_str) ? $field_str : '') + ) + ); +} // end 1. - - /** - * Displays the results - */ +/** + * Displays database search results + * + * @param array $tables_selected Tables on which search is to be performed + * @param string $searched The search word/phrase/regexp + * @param string $option_str Type of search + * @param string $search_str the string to search + * @param integer $search_option type of search + * (1 -> 1 word at least, 2 -> all words, + * 3 -> exact string, 4 -> regexp) + * @param string $field_str Restrict the search to this field + * + * @return string HTML for search results + */ +function PMA_dbSearchGetSearchResults($tables_selected, $searched, $option_str, + $search_str, $search_option, $field_str = null +) { $this_url_params = array( 'db' => $GLOBALS['db'], 'goto' => 'db_sql.php', 'pos' => 0, 'is_js_confirmed' => 0, ); - + $html_output = ''; // Displays search string - echo '
' . "\n" - . '' . "\n" - . '
' . "\n" + $html_output .= '
' + . '' + . '' . "\n"; + ) + . ''; $num_search_result_total = 0; $odd_row = true; - + // For each table selected as search criteria foreach ($tables_selected as $each_table) { // Gets the SQL statements $newsearchsqls = PMA_getSearchSqls( $each_table, (! empty($field_str) ? $field_str : ''), $search_str, $search_option ); - // Executes the "COUNT" statement $res_cnt = PMA_DBI_fetch_value($newsearchsqls['select_count']); $num_search_result_total += $res_cnt; - - $sql_query .= $newsearchsqls['select_count']; - - echo '' - . '\n"; - - if ($res_cnt > 0) { - $this_url_params['sql_query'] = $newsearchsqls['select_fields']; - $browse_result_path = 'sql.php' . PMA_generate_common_url($this_url_params); - ?> - - - -  ' . "\n" - .'' . "\n"; - }// end if else + $html_output .= PMA_dbSearchGetResultsRow( + $each_table, $newsearchsqls, $odd_row + ); $odd_row = ! $odd_row; - echo '' . "\n"; } // end for - - echo '
' . sprintf( __('Search results for "%s" %s:'), $searched, $option_str - ) . "\n" - . '
' . sprintf( - _ngettext('%1$s match inside table %2$s', '%1$s matches inside table %2$s', $res_cnt), - $res_cnt, htmlspecialchars($each_table) - ) . "  
' . "\n"; + $html_output .= '
'; if (count($tables_selected) > 1) { - echo '

' . sprintf( - _ngettext('Total: %s match', 'Total: %s matches', $num_search_result_total), + $html_output .= '

'; + $html_output .= sprintf( + _ngettext( + 'Total: %s match', + 'Total: %s matches', + $num_search_result_total + ), $num_search_result_total - ) . '

' . "\n"; + ); + $html_output .= '

'; } -} // end 1. + return $html_output; +} + +/** + * Provides search results row with browse/delete links. + * (for a table) + * + * @param string $each_table Tables on which search is to be performed + * @param array $newsearchsqls Contains SQL queries + * @param bool $odd_row For displaying contrasting table rows + * + * @return string HTML row + */ +function PMA_dbSearchGetResultsRow($each_table, $newsearchsqls, $odd_row) +{ + $res_cnt = PMA_DBI_fetch_value($newsearchsqls['select_count']); + // Start forming search results row + $html_output = ''; + $html_output .= ''; + $html_output .= sprintf( + _ngettext( + '%1$s match in %2$s', + '%1$s matches in %2$s', $res_cnt + ), + $res_cnt, htmlspecialchars($each_table) + ); + $html_output .= ''; + + if ($res_cnt > 0) { + $this_url_params['sql_query'] = $newsearchsqls['select_fields']; + $browse_result_path = 'sql.php' . PMA_generate_common_url($this_url_params); + $html_output .= '' + . __('Browse') . ''; + $this_url_params['sql_query'] = $newsearchsqls['delete']; + $delete_result_path = 'sql.php' . PMA_generate_common_url($this_url_params); + $html_output .= '' + . __('Delete') . ''; + } else { + $html_output .= ' ' + .' '; + }// end if else + $html_output .= ''; + return $html_output; +} /** * If we are in an Ajax request, we need to exit after displaying all the HTML @@ -279,98 +335,134 @@ if (isset($_REQUEST['submit_search'])) { if ($GLOBALS['is_ajax_request'] == true) { exit; } else { - echo '
';//end searchresults div + $response->addHTML('
');//end searchresults div } /** - * 2. Displays the main search form + * Provides the main search form's html + * + * @param string $searched Keyword/Regular expression to be searched + * @param integer $search_option Type of search (one word, phrase etc.) + * @param array $tables_names_only Names of all tables + * @param array $tables_selected Tables on which search is to be performed + * @param array $url_params URL parameters + * @param string $field_str Restrict the search to this field + * + * @return string HTML for selection form */ -?> - -
method="post" action="db_search.php" name="db_search"> - -
- +function PMA_dbSearchGetSelectionForm($searched, $search_option, $tables_names_only, + $tables_selected, $url_params, $field_str = null +) { + + $common_functions = PMA_CommonFunctions::getInstance(); + + $html_output = ''; + $html_output .= ''; + $html_output .= PMA_generate_common_hidden_inputs($GLOBALS['db']); + $html_output .= '
'; + // set legend caption + $html_output .= '' . __('Search in database') . ''; + $html_output .= ''; + // inputbox for search phrase + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + // choices for types of search + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + // displays table names as select options + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= '
' . __('Words or values to search for (wildcard: "%"):') + . '
' . __('Find:') . ''; + $choices = array( + '1' => __('at least one of the words') . $common_functions->showHint(__('Words are separated by a space character (" ").')), + '2' => __('all words') . $common_functions->showHint(__('Words are separated by a space character (" ").')), + '3' => __('the exact phrase'), + '4' => __('as regular expression') . ' ' . $common_functions->showMySQLDocu('Regexp', 'Regexp') + ); + // 4th parameter set to true to add line breaks + // 5th parameter set to false to avoid htmlspecialchars() escaping in the label + // since we have some HTML in some labels + $html_output .= $common_functions->getRadioFields( + 'search_option', $choices, $search_option, true, false + ); + $html_output .= '
' . __('Inside tables:') . ''; + $html_output .= ''; + $alter_select + = '' . __('Select All') . '' + . ' / ' + . '' . __('Unselect All') . ''; + $html_output .= '
' . $alter_select . '
' . __('Inside column:') . '
'; + $html_output .= '
'; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= getResultDivs(); + + return $html_output; +} - - - - - - - - - - - - - - - -
- '; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + // div for browsing results + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= '
'; + $html_output .= '
'; + $html_output .= ''; + $html_output .= '
'; + $html_output .= ''; + $html_output .= ''; + return $html_output; +} -$choices = array( - '1' => __('at least one of the words') . $common_functions->showHint(__('Words are separated by a space character (" ").')), - '2' => __('all words') . $common_functions->showHint(__('Words are separated by a space character (" ").')), - '3' => __('the exact phrase'), - '4' => __('as regular expression') . ' ' . $common_functions->showMySQLDocu('Regexp', 'Regexp') +$response->addHTML( + PMA_dbSearchGetSelectionForm( + $searched, $search_option, $tables_names_only, $tables_selected, $url_params, + (! empty($field_str) ? $field_str : '') + ) ); -// 4th parameter set to true to add line breaks -// 5th parameter set to false to avoid htmlspecialchars() escaping in the label -// since we have some HTML in some labels -echo $common_functions->getRadioFields( - 'search_option', $choices, $search_option, true, false -); -unset($choices); - ?> -
- -' . "\n"; -foreach ($tables_names_only as $each_table) { - if (in_array($each_table, $tables_selected)) { - $is_selected = ' selected="selected"'; - } else { - $is_selected = ''; - } - - echo ' ' . "\n"; -} // end while - -echo ' ' . "\n"; -$alter_select - = '' . __('Select All') . '' - . ' / ' - . '' . __('Unselect All') . ''; ?> -
-
-
-
-
- -
- - - -
- -
-
- -
-
-
- -
- - - diff --git a/db_structure.php b/db_structure.php index 894fdc78fe..ceb281d9c3 100644 --- a/db_structure.php +++ b/db_structure.php @@ -460,7 +460,7 @@ foreach ($tables as $keyname => $each_table) { ?>" id="row_tbl_"> - /> @@ -684,13 +684,8 @@ $checkall_url = 'db_structure.php?' . PMA_generate_common_url($db); ?> <?php echo __('With selected:'); ?> - - -/ - - + + / 0) { + $checkall.prop({checked: true, indeterminate: true}); + } + else { + $checkall.prop({checked: false, indeterminate: false}); + } +}); +$("input#checkall").live("change", function() { + var is_checked = $(this).is(":checked"); + $(this.form).find(checkboxes_sel).prop("checked", is_checked) + .parents("tr").toggleClass("marked", is_checked); +}); + /** * Toggles row colors of a set of 'tr' elements starting from a given element * diff --git a/js/server_databases.js b/js/server_databases.js index abf31b2caf..caf59554b4 100644 --- a/js/server_databases.js +++ b/js/server_databases.js @@ -30,7 +30,8 @@ $(function() { * @var selected_dbs Array containing the names of the checked databases */ var selected_dbs = []; - $form.find('input:checkbox:checked').each(function () { + // loop over all checked checkboxes, except the #checkall checkbox + $form.find('input:checkbox:checked:not(#checkall)').each(function () { $(this).closest('tr').addClass('removeMe'); selected_dbs[selected_dbs.length] = 'DROP DATABASE `' + escapeHtml($(this).val()) + '`;'; }); diff --git a/libraries/Config.class.php b/libraries/Config.class.php index cad6eff80b..01d47aa670 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -12,7 +12,7 @@ if (! defined('PHPMYADMIN')) { /** * Load vendor configuration. */ -require './libraries/vendor_config.php'; +require_once './libraries/vendor_config.php'; /** * Configuration class diff --git a/libraries/DisplayResults.class.php b/libraries/DisplayResults.class.php index 07d0fc8bb8..3a43a2c2bb 100644 --- a/libraries/DisplayResults.class.php +++ b/libraries/DisplayResults.class.php @@ -4275,10 +4275,6 @@ class PMA_DisplayResults 'sql_query' => $this->_sql_query, 'goto' => $this->_goto, ); - $uncheckall_url = 'sql.php' . PMA_generate_common_url($_url_params); - - $_url_params['checkall'] = '1'; - $checkall_url = 'sql.php' . PMA_generate_common_url($_url_params); if ($_SESSION['tmp_user_values']['disp_direction'] == self::DISP_DIR_VERTICAL) { @@ -4312,10 +4308,9 @@ class PMA_DisplayResults . ' alt="' . __('With selected:') . '" />'; } - $links_html .= $checkall_link . "\n" - . ' / ' . "\n" - . $uncheckall_link . "\n" - . '' . __('With selected:') . '' . "\n"; + $links_html .= ' ' + . ' ' + . '' . __('With selected:') . '' . "\n"; $links_html .= $this->getCommonFunctions()->getButtonOrImage( 'submit_mult', 'mult_submit', 'submit_mult_change', @@ -4566,13 +4561,13 @@ class PMA_DisplayResults * @param string $transform_options transformation parameters * @param string $default_function default transformation function * @param object $meta the meta-information about this field - * @param array $url_params parameters that should go to the + * @param array $url_params parameters that should go to the * download link * * @return mixed string or float - * + * * @access private - * + * * @see _getDataCellForBlobColumns(), _getDataCellForGeometryColumns(), * _getDataCellForNonNumericAndNonBlobColumns(), * _getSortedColumnMessage() @@ -4656,12 +4651,12 @@ class PMA_DisplayResults * @param bool $is_field_truncated whether the field is truncated * * @return string formatted data - * + * * @access private - * + * * @see _getDataCellForNumericColumns(), _getDataCellForGeometryColumns(), * _getDataCellForNonNumericAndNonBlobColumns(), - * + * */ private function _getRowData( $class, $condition_field, $analyzed_sql, $meta, $map, $data, @@ -4838,9 +4833,9 @@ class PMA_DisplayResults * @param string $class css classes for the td element * * @return string the generated HTML - * + * * @access private - * + * * @see _getTableBody(), _getCheckboxAndLinks() */ private function _getCheckboxForMultiRowSubmissions( @@ -4861,7 +4856,7 @@ class PMA_DisplayResults . ' diff --git a/libraries/Footer.class.php b/libraries/Footer.class.php index 4af7b1867f..143c903db9 100644 --- a/libraries/Footer.class.php +++ b/libraries/Footer.class.php @@ -106,7 +106,7 @@ class PMA_Footer // set current db, table and sql query in the querywindow $query = ''; - if (strlen($GLOBALS['sql_query']) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) { + if (isset($GLOBALS['sql_query']) && strlen($GLOBALS['sql_query']) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) { $query = PMA_escapeJsString($GLOBALS['sql_query']); } $this->_scripts->addCode(" diff --git a/libraries/Header.class.php b/libraries/Header.class.php index 8323e31bcc..90c71b2591 100644 --- a/libraries/Header.class.php +++ b/libraries/Header.class.php @@ -337,7 +337,7 @@ class PMA_Header */ $GLOBALS['now'] = gmdate('D, d M Y H:i:s') . ' GMT'; /* Prevent against ClickJacking by allowing frames only from same origin */ - if (! $GLOBALS['cfg']['AllowThirdPartyFraming']) { + if (! $GLOBALS['cfg']['AllowThirdPartyFraming'] && ! defined('TESTSUITE')) { header( 'X-Frame-Options: SAMEORIGIN' ); @@ -353,7 +353,7 @@ class PMA_Header ); } PMA_noCacheHeader(); - if (! defined('IS_TRANSFORMATION_WRAPPER')) { + if (! defined('IS_TRANSFORMATION_WRAPPER') && ! defined('TESTSUITE')) { // Define the charset to be used header('Content-Type: text/html; charset=utf-8'); } diff --git a/libraries/Index.class.php b/libraries/Index.class.php index bbdd547f58..989b9d0556 100644 --- a/libraries/Index.class.php +++ b/libraries/Index.class.php @@ -21,50 +21,50 @@ class PMA_Index * * @var array */ - protected static $_registry = array(); + private static $_registry = array(); /** * @var string The name of the schema */ - protected $_schema = ''; + private $_schema = ''; /** * @var string The name of the table */ - protected $_table = ''; + private $_table = ''; /** * @var string The name of the index */ - protected $_name = ''; + private $_name = ''; /** * Columns in index * * @var array */ - protected $_columns = array(); + private $_columns = array(); /** * The index method used (BTREE, SPATIAL, FULLTEXT, HASH, RTREE). * * @var string */ - protected $_type = ''; + private $_type = ''; /** * The index choice (PRIMARY, UNIQUE, INDEX, SPATIAL, FULLTEXT) * * @var string */ - protected $_choice = ''; + private $_choice = ''; /** * Various remarks. * * @var string */ - protected $_remarks = ''; + private $_remarks = ''; /** * Any comment provided for the index with a COMMENT attribute when the @@ -72,19 +72,19 @@ class PMA_Index * * @var string */ - protected $_comment = ''; + private $_comment = ''; /** * @var integer 0 if the index cannot contain duplicates, 1 if it can. */ - protected $_non_unique = 0; + private $_non_unique = 0; /** * Indicates how the key is packed. NULL if it is not. * * @var string */ - protected $_packed = null; + private $_packed = null; /** * Constructor @@ -157,7 +157,7 @@ class PMA_Index * * @return boolean whether loading was successful */ - static protected function _loadIndexes($table, $schema) + static private function _loadIndexes($table, $schema) { if (isset(PMA_Index::$_registry[$schema][$table])) { return true; @@ -202,7 +202,8 @@ class PMA_Index // $columns[names][] // $columns[sub_parts][] foreach ($columns['names'] as $key => $name) { - $sub_part = isset($columns['sub_parts'][$key]) ? $columns['sub_parts'][$key] : ''; + $sub_part = isset($columns['sub_parts'][$key]) + ? $columns['sub_parts'][$key] : ''; $_columns[] = array( 'Column_name' => $name, 'Sub_part' => $sub_part, @@ -435,7 +436,10 @@ class PMA_Index if (! $print_mode) { $r = '
'; $r .= '' . __('Indexes'); - $r .= $common_functions->showMySQLDocu('optimization', 'optimizing-database-structure'); + $r .= $common_functions->showMySQLDocu( + 'optimization', 'optimizing-database-structure' + ); + $r .= ''; $r .= $no_indexes; if (count($indexes) < 1) { @@ -482,24 +486,39 @@ class PMA_Index if ($GLOBALS['cfg']['AjaxEnable']) { $r .= ' ajax'; } - $r .= '" ' . $row_span . '>' - . ' ' . $common_functions->getIcon('b_edit.png', __('Edit')) . '' + $r .= '" ' . $row_span . '>' . ' ' + . $common_functions->getIcon('b_edit.png', __('Edit')) . '' . '' . "\n"; $this_params = $GLOBALS['url_params']; if ($index->getName() == 'PRIMARY') { - $this_params['sql_query'] = 'ALTER TABLE ' . $common_functions->backquote($table) . ' DROP PRIMARY KEY;'; - $this_params['message_to_show'] = __('The primary key has been dropped'); - $js_msg = PMA_jsFormat('ALTER TABLE ' . $table . ' DROP PRIMARY KEY'); + $this_params['sql_query'] = 'ALTER TABLE ' + . $common_functions->backquote($table) + . ' DROP PRIMARY KEY;'; + $this_params['message_to_show'] + = __('The primary key has been dropped'); + $js_msg = PMA_jsFormat( + 'ALTER TABLE ' . $table . ' DROP PRIMARY KEY' + ); } else { - $this_params['sql_query'] = 'ALTER TABLE ' . $common_functions->backquote($table) . ' DROP INDEX ' . $common_functions->backquote($index->getName()) . ';'; - $this_params['message_to_show'] = sprintf(__('Index %s has been dropped'), $index->getName()); - $js_msg = PMA_jsFormat('ALTER TABLE ' . $table . ' DROP INDEX ' . $index->getName()) . ';'; + $this_params['sql_query'] = 'ALTER TABLE ' + . $common_functions->backquote($table) . ' DROP INDEX ' + . $common_functions->backquote($index->getName()) . ';'; + $this_params['message_to_show'] = sprintf( + __('Index %s has been dropped'), $index->getName() + ); + + $js_msg = PMA_jsFormat( + 'ALTER TABLE ' . $table . ' DROP INDEX ' + . $index->getName() . ';' + ); + } $r .= ''; - $r .= ''; + $r .= ''; $r .= ' ' . htmlspecialchars($index->getName()) . ''; + $r .= '' + . htmlspecialchars($index->getName()) + . ''; } else { - $r .= '' . htmlspecialchars($index->getName()) . ''; + $r .= '' + . htmlspecialchars($index->getName()) + . ''; } - $r .= '' . htmlspecialchars($index->getType()) . ''; + $r .= '' + . htmlspecialchars($index->getType()) + . ''; $r .= '' . $index->isUnique(true) . ''; $r .= '' . $index->isPacked(true) . ''; @@ -528,9 +553,15 @@ class PMA_Index $r .= ' (' . $column->getSubPart() . ')'; } $r .= ''; - $r .= '' . htmlspecialchars($column->getCardinality()) . ''; - $r .= '' . htmlspecialchars($column->getCollation()) . ''; - $r .= '' . htmlspecialchars($column->getNull(true)) . ''; + $r .= '' + . htmlspecialchars($column->getCardinality()) + . ''; + $r .= '' + . htmlspecialchars($column->getCollation()) + . ''; + $r .= '' + . htmlspecialchars($column->getNull(true)) + . ''; if ($column->getSeqInIndex() == 1) { $r .= '' @@ -597,7 +628,9 @@ class PMA_Index // did not find any difference // so it makes no sense to have this two equal indexes - $message = PMA_Message::notice(__('The indexes %1$s and %2$s seem to be equal and one of them could possibly be removed.')); + $message = PMA_Message::notice( + __('The indexes %1$s and %2$s seem to be equal and one of them could possibly be removed.') + ); $message->addParam($each_index->getName()); $message->addParam($while_index->getName()); $output .= $message->getDisplay(); @@ -619,17 +652,18 @@ class PMA_Index_Column /** * @var string The column name */ - protected $_name = ''; + private $_name = ''; /** * @var integer The column sequence number in the index, starting with 1. */ - protected $_seq_in_index = 1; + private $_seq_in_index = 1; /** - * @var string How the column is sorted in the index. “A” (Ascending) or NULL (Not sorted) + * @var string How the column is sorted in the index. “A” (Ascending) or + * NULL (Not sorted) */ - protected $_collation = null; + private $_collation = null; /** * The number of indexed characters if the column is only partly indexed, @@ -637,7 +671,7 @@ class PMA_Index_Column * * @var integer */ - protected $_sub_part = null; + private $_sub_part = null; /** * Contains YES if the column may contain NULL. @@ -645,7 +679,7 @@ class PMA_Index_Column * * @var string */ - protected $_null = ''; + private $_null = ''; /** * An estimate of the number of unique values in the index. This is updated @@ -656,7 +690,7 @@ class PMA_Index_Column * * @var integer */ - protected $_cardinality = null; + private $_cardinality = null; public function __construct($params = array()) { diff --git a/libraries/Menu.class.php b/libraries/Menu.class.php index ba7dc7047d..5b854d6c08 100644 --- a/libraries/Menu.class.php +++ b/libraries/Menu.class.php @@ -267,12 +267,7 @@ class PMA_Menu { $db_is_information_schema = PMA_is_system_schema($this->_db); $tbl_is_view = PMA_Table::isView($this->_db, $this->_table); - - $table_status = PMA_Table::sGetStatusInfo($this->_db, $this->_table); - $table_info_num_rows = 0; - if (isset($table_status['Rows'])) { - $table_info_num_rows = $table_status['Rows']; - } + $table_info_num_rows = PMA_Table::countRecords($this->_db, $this->_table); $tabs = array(); diff --git a/libraries/OutputBuffering.class.php b/libraries/OutputBuffering.class.php index 782e7d0686..69e12aeb9c 100644 --- a/libraries/OutputBuffering.class.php +++ b/libraries/OutputBuffering.class.php @@ -1,7 +1,7 @@ _mode); + if (! defined('TESTSUITE')) { + header('X-ob_mode: ' . $this->_mode); + } register_shutdown_function('PMA_OutputBuffering::stop'); $this->_on = true; } diff --git a/libraries/RecentTable.class.php b/libraries/RecentTable.class.php index 489e42c721..e9052964c6 100644 --- a/libraries/RecentTable.class.php +++ b/libraries/RecentTable.class.php @@ -83,7 +83,7 @@ class PMA_RecentTable = " SELECT `tables` FROM " . $this->pma_table . " WHERE `username` = '" . $GLOBALS['cfg']['Server']['user'] . "'"; - $row = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query)); + $row = PMA_DBI_fetch_array(PMA_queryAsControlUser($sql_query)); if (isset($row[0])) { return json_decode($row[0], true); } else { diff --git a/libraries/StorageEngine.class.php b/libraries/StorageEngine.class.php index a5b100a9c5..33ff3f4ab6 100644 --- a/libraries/StorageEngine.class.php +++ b/libraries/StorageEngine.class.php @@ -23,7 +23,8 @@ define('PMA_ENGINE_DETAILS_TYPE_NUMERIC', 2); //Has no effect yet... define('PMA_ENGINE_DETAILS_TYPE_BOOLEAN', 3); // 'ON' or 'OFF' /** - * base Storage Engine Class + * Base Storage Engine Class + * * @package PhpMyAdmin */ class PMA_StorageEngine @@ -75,7 +76,8 @@ class PMA_StorageEngine AND p.plugin_name NOT IN ('FunctionEngine', 'schema')"; $storage_engines = PMA_DBI_fetch_result($sql, 'Engine'); } else { - $storage_engines = PMA_DBI_fetch_result('SHOW STORAGE ENGINES', 'Engine'); + $storage_engines + = PMA_DBI_fetch_result('SHOW STORAGE ENGINES', 'Engine'); } } @@ -88,7 +90,8 @@ class PMA_StorageEngine * @param string $name The name of the select form element * @param string $id The ID of the form field * @param string $selected The selected engine - * @param boolean $offerUnavailableEngines Should unavailable storage engines be offered? + * @param boolean $offerUnavailableEngines Should unavailable storage + * engines be offered? * * @static * @return string html selectbox @@ -116,8 +119,10 @@ class PMA_StorageEngine $output .= ' ' . "\n"; } @@ -216,7 +221,7 @@ class PMA_StorageEngine } /** - * returns the engine specific handling for + * Returns the engine specific handling for * PMA_ENGINE_DETAILS_TYPE_SIZE type variables. * * This function should be overridden when diff --git a/libraries/Table.class.php b/libraries/Table.class.php index ab58384d06..84d8c4fed1 100644 --- a/libraries/Table.class.php +++ b/libraries/Table.class.php @@ -269,49 +269,6 @@ class PMA_Table return null; } - /** - * loads structure data - * (this function is work in progress? not yet used) - * - * @return boolean - */ - function loadStructure() - { - $table_info = PMA_DBI_get_tables_full( - $this->getDbName(), - $this->getName() - ); - - if (false === $table_info) { - return false; - } - - $this->settings = $table_info; - - if ($this->get('TABLE_ROWS') === null) { - $this->set( - 'TABLE_ROWS', - PMA_Table::countRecords( - $this->getDbName(), - $this->getName(), - true - ) - ); - } - - $create_options = explode(' ', $this->get('TABLE_ROWS')); - - // export create options by its name as variables into global namespace - // f.e. pack_keys=1 becomes available as $pack_keys with value of '1' - foreach ($create_options as $each_create_option) { - $each_create_option = explode('=', $each_create_option); - if (isset($each_create_option[1])) { - $this->set($$each_create_option[0], $each_create_option[1]); - } - } - return true; - } - /** * Checks if this is a merge table * @@ -734,7 +691,7 @@ class PMA_Table // must use PMA_DBI_QUERY_STORE here, since we execute another // query inside the loop - $table_copy_rs = PMA_query_as_controluser( + $table_copy_rs = PMA_queryAsControlUser( $table_copy_query, true, PMA_DBI_QUERY_STORE ); @@ -755,7 +712,7 @@ class PMA_Table (\'' . implode('\', \'', $value_parts) . '\', \'' . implode('\', \'', $new_value_parts) . '\')'; - PMA_query_as_controluser($new_table_query); + PMA_queryAsControlUser($new_table_query); $last_id = PMA_DBI_insert_id(); } // end while @@ -1051,7 +1008,7 @@ class PMA_Table . '\'' . $common_functions->sqlAddSlashes($comments_copy_row['transformation']) . '\',' . '\'' . $common_functions->sqlAddSlashes($comments_copy_row['transformation_options']) . '\'' : '') . ')'; - PMA_query_as_controluser($new_comment_query); + PMA_queryAsControlUser($new_comment_query); } // end while PMA_DBI_free_result($comments_copy_rs); unset($comments_copy_rs); @@ -1413,7 +1370,7 @@ class PMA_Table . " AND `db_name` = '" . $this->getCommonFunctions()->sqlAddSlashes($this->db_name) . "'" . " AND `table_name` = '" . $this->getCommonFunctions()->sqlAddSlashes($this->name) . "'"; - $row = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query)); + $row = PMA_DBI_fetch_array(PMA_queryAsControlUser($sql_query)); if (isset($row[0])) { return json_decode($row[0], true); } else { diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index 104e2735ed..dde243cbd1 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -220,7 +220,7 @@ class PMA_Tracker " AND table_name = '" . $common_functions->sqlAddSlashes($tablename) . "' " . " ORDER BY version DESC"; - $row = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query)); + $row = PMA_DBI_fetch_array(PMA_queryAsControlUser($sql_query)); if (isset($row['tracking_active']) && $row['tracking_active'] == 1) { return true; @@ -331,7 +331,7 @@ class PMA_Tracker '" . $common_functions->sqlAddSlashes("\n") . "', '" . $common_functions->sqlAddSlashes(self::_transformTrackingSet($tracking_set)) . "' )"; - $result = PMA_query_as_controluser($sql_query); + $result = PMA_queryAsControlUser($sql_query); if ($result) { // Deactivate previous version @@ -357,8 +357,10 @@ class PMA_Tracker $common_functions = PMA_CommonFunctions::getInstance(); $sql_query = "/*NOTRACK*/\n" . "DELETE FROM " . self::$pma_table - . " WHERE `db_name` = '" . $common_functions->sqlAddSlashes($dbname) . "'" - . " AND `table_name` = '" . $common_functions->sqlAddSlashes($tablename) . "'"; + . " WHERE `db_name` = '" + . $common_functions->sqlAddSlashes($dbname) . "'" + . " AND `table_name` = '" + . $common_functions->sqlAddSlashes($tablename) . "'"; $result = PMA_query_as_controluser($sql_query); return $result; @@ -423,7 +425,7 @@ class PMA_Tracker '" . $common_functions->sqlAddSlashes("\n") . "', '" . $common_functions->sqlAddSlashes(self::_transformTrackingSet($tracking_set)) . "' )"; - $result = PMA_query_as_controluser($sql_query); + $result = PMA_queryAsControlUser($sql_query); return $result; } @@ -452,7 +454,7 @@ class PMA_Tracker " AND `table_name` = '" . $common_functions->sqlAddSlashes($tablename) . "' " . " AND `version` = '" . $common_functions->sqlAddSlashes($version) . "' "; - $result = PMA_query_as_controluser($sql_query); + $result = PMA_queryAsControlUser($sql_query); return $result; } @@ -501,7 +503,7 @@ class PMA_Tracker " AND `table_name` = '" . $common_functions->sqlAddSlashes($tablename) . "' " . " AND `version` = '" . $common_functions->sqlAddSlashes($version) . "' "; - $result = PMA_query_as_controluser($sql_query); + $result = PMA_queryAsControlUser($sql_query); return $result; } @@ -566,7 +568,7 @@ class PMA_Tracker ? ' AND tracking & ' . self::_transformTrackingSet($statement) . ' <> 0' : " AND FIND_IN_SET('" . $statement . "',tracking) > 0" ; } - $row = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query)); + $row = PMA_DBI_fetch_array(PMA_queryAsControlUser($sql_query)); return isset($row[0]) ? $row[0] : -1; @@ -601,7 +603,7 @@ class PMA_Tracker $sql_query .= " AND `version` = '" . $common_functions->sqlAddSlashes($version) ."' ". " ORDER BY `version` DESC LIMIT 1"; - $mixed = PMA_DBI_fetch_assoc(PMA_query_as_controluser($sql_query)); + $mixed = PMA_DBI_fetch_assoc(PMA_queryAsControlUser($sql_query)); // Parse log $log_schema_entries = explode('# log ', $mixed['schema_sql']); @@ -1026,7 +1028,7 @@ class PMA_Tracker " AND `table_name` = '" . $common_functions->sqlAddSlashes($result['tablename']) . "' " . " AND `version` = '" . $common_functions->sqlAddSlashes($version) . "' "; - $result = PMA_query_as_controluser($sql_query); + $result = PMA_queryAsControlUser($sql_query); } } } diff --git a/libraries/auth/config.auth.lib.php b/libraries/auth/config.auth.lib.php index 331a8a21ec..dbcc0bf847 100644 --- a/libraries/auth/config.auth.lib.php +++ b/libraries/auth/config.auth.lib.php @@ -123,7 +123,7 @@ function PMA_auth_fails() include_once './libraries/select_server.lib.php'; echo '' . "\n"; echo ' ' . "\n"; - PMA_select_server(true, true); + PMA_selectServer(true, true); echo ' ' . "\n"; echo '' . "\n"; } diff --git a/libraries/auth/cookie.auth.lib.php b/libraries/auth/cookie.auth.lib.php index 36d967e3af..270a6743b4 100644 --- a/libraries/auth/cookie.auth.lib.php +++ b/libraries/auth/cookie.auth.lib.php @@ -256,7 +256,7 @@ function PMA_auth() echo '>'; include_once './libraries/select_server.lib.php'; - PMA_select_server(false, false); + PMA_selectServer(false, false); echo ''; } else { diff --git a/libraries/build_html_for_db.lib.php b/libraries/build_html_for_db.lib.php index bfe4b1b30f..39a90860a5 100644 --- a/libraries/build_html_for_db.lib.php +++ b/libraries/build_html_for_db.lib.php @@ -80,7 +80,7 @@ function PMA_buildHtmlForDb( $out = ''; if ($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase']) { $out .= ''; - $out .= 'type != 'timestamp') && ($meta->type != 'real') ) { - $con_val = '= ' . $row[$i]; + + $con_val = '= ' . $row[$i]; } elseif ((($meta->type == 'blob') || ($meta->type == 'string')) // hexify only if this is a true not empty BLOB or a BINARY @@ -2317,16 +2318,17 @@ class PMA_CommonFunctions } } elseif ($meta->type == 'bit') { + $con_val = "= b'" . $this->printableBitValue($row[$i], $meta->length) . "'"; - + } else { $con_val = '= \'' . $this->sqlAddSlashes($row[$i], false, true) . '\''; - } + } } - + if ($con_val != null) { - + $condition .= $con_val . ' AND'; if ($meta->primary_key > 0) { diff --git a/libraries/core.lib.php b/libraries/core.lib.php index 4a44566155..af0792703f 100644 --- a/libraries/core.lib.php +++ b/libraries/core.lib.php @@ -575,6 +575,9 @@ function PMA_sendHeaderLocation($uri, $use_refresh = false) */ function PMA_noCacheHeader() { + if (defined('TESTSUITE')) { + return; + } // rfc2616 - Section 14.21 header('Expires: ' . date(DATE_RFC1123)); // HTTP/1.1 diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index 83b6dea395..1b4c9909ee 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -663,7 +663,8 @@ function PMA_DBI_get_tables_full($database, $table = false, $each_tables[$table_name]['TABLE_TYPE'] = 'VIEW'; } else { /** - * @todo difference between 'TEMPORARY' and 'BASE TABLE' but how to detect? + * @todo difference between 'TEMPORARY' and 'BASE TABLE' + * but how to detect? */ $each_tables[$table_name]['TABLE_TYPE'] = 'BASE TABLE'; } @@ -880,7 +881,9 @@ function PMA_DBI_get_databases_full($database = null, $force_stats = false, $databases[$database_name]['SCHEMA_DATA_FREE'] = 0; $res = PMA_DBI_query('SHOW TABLE STATUS FROM ' - . $common_functions->backquote($database_name) . ';'); + . $common_functions->backquote($database_name) . ';' + ); + while ($row = PMA_DBI_fetch_assoc($res)) { $databases[$database_name]['SCHEMA_TABLES']++; $databases[$database_name]['SCHEMA_TABLE_ROWS'] @@ -1439,9 +1442,10 @@ 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); + $set_collation_con_query = "SET collation_connection = '" + . PMA_sqlAddSlashes($GLOBALS['collation_connection']) . "';"; PMA_DBI_query( - "SET collation_connection = '" - . $common_functions->sqlAddSlashes($GLOBALS['collation_connection']) . "';", + $set_collation_con_query, $link, PMA_DBI_QUERY_STORE ); diff --git a/libraries/display_import.lib.php b/libraries/display_import.lib.php index 3fcc213aaa..c2324332d6 100644 --- a/libraries/display_import.lib.php +++ b/libraries/display_import.lib.php @@ -39,7 +39,7 @@ if (empty($import_list)) { $('#upload_form_status').css("display", "inline"); // show progress bar $('#upload_form_status_info').css("display", "inline"); // - || - var finished = false; var percent = 0.0; @@ -156,7 +156,7 @@ if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") {
> diff --git a/libraries/display_import_ajax.lib.php b/libraries/display_import_ajax.lib.php index e0180a2b2e..d17e7b133c 100644 --- a/libraries/display_import_ajax.lib.php +++ b/libraries/display_import_ajax.lib.php @@ -83,8 +83,6 @@ function PMA_import_uploadprogressCheck() /** * Checks if PHP 5.4 session upload-progress feature is available. - * Due to a bug in PHP 5.4's session upload feature (see /import_status.php), - * we need to check for cURL support. * * @return boolean true if PHP 5.4 session upload-progress is available, * false if it is not @@ -93,7 +91,6 @@ function PMA_import_sessionCheck() { if (PMA_PHP_INT_VERSION < 50400 || ! ini_get('session.upload_progress.enabled') - || ! function_exists('curl_exec') ) { return false; } diff --git a/libraries/gis/pma_gis_visualization.php b/libraries/gis/pma_gis_visualization.php index f24efe9129..df739159dd 100644 --- a/libraries/gis/pma_gis_visualization.php +++ b/libraries/gis/pma_gis_visualization.php @@ -124,7 +124,7 @@ class PMA_GIS_Visualization */ private function _sanitizeName($file_name, $ext) { - $file_name = PMA_sanitize_filename($file_name); + $file_name = PMA_sanitizeFilename($file_name); // Check if the user already added extension; // get the substring where the extension would be if it was included diff --git a/libraries/import.lib.php b/libraries/import.lib.php index ccac2b23c5..0160f0bee9 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -135,7 +135,7 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false) ); } elseif ($run_query) { if ($controluser) { - $result = PMA_query_as_controluser( + $result = PMA_queryAsControlUser( $import_run_buffer['sql'] ); } else { diff --git a/libraries/insert_edit.lib.php b/libraries/insert_edit.lib.php index 0c482cfebf..2fbab090d5 100644 --- a/libraries/insert_edit.lib.php +++ b/libraries/insert_edit.lib.php @@ -21,8 +21,8 @@ if (! defined('PHPMYADMIN')) { * * @return array $_form_params array of insert/edit form parameters */ -function PMA_getFormParametersForInsertForm( - $db, $table, $where_clauses, $where_clause_array, $err_url +function PMA_getFormParametersForInsertForm($db, $table, $where_clauses, + $where_clause_array, $err_url ) { $_form_params = array( 'db' => $db, @@ -52,7 +52,7 @@ function PMA_getFormParametersForInsertForm( * @return type containing insert_mode,whereClauses, result array * where_clauses_array and found_unique_key boolean value */ -function PMA_getValuesForEditMode($where_clause, $table, $db) +function PMA_getStuffForEditMode($where_clause, $table, $db) { $found_unique_key = false; if (isset($where_clause)) { @@ -191,10 +191,12 @@ function PMA_loadFirstRowInEditMode($table, $db) * * @return array Add some url parameters to $url_params array and return it */ -function PMA_urlParamsInEditMode($url_params) +function PMA_urlParamsInEditMode($url_params, $where_clause_array, $where_clause) { - if (isset($_REQUEST['where_clause'])) { - $url_params['where_clause'] = trim($_REQUEST['where_clause']); + if (isset($where_clause)) { + foreach ($where_clause_array as $key_id => $where_clause) { + $url_params['where_clause'] = trim($where_clause); + } } if (! empty($_REQUEST['sql_query'])) { $url_params['sql_query'] = $_REQUEST['sql_query']; @@ -305,7 +307,7 @@ function PMA_getDefaultForDatetime($column) * * @param array $column description of column in given table * @param array $comments_map comments for every column that has a comment - * @param boolean $timestamp_seen whether a timestamp has been seen + * @param boolean $timestamp_seen whether a timestamp has been seen * * @return array description of column in given table */ @@ -413,7 +415,7 @@ function PMA_isColumnChar($column) * Retrieve set, enum, timestamp table columns * * @param array $column description of column in given table - * @param boolean $timestamp_seen whether a timestamp has been seen + * @param boolean $timestamp_seen whether a timestamp has been seen * * @return array $column['pma_type'], $column['wrap'], $column['first_timestamp'] */ @@ -569,10 +571,16 @@ function PMA_getNullifyCodeForNullColumn($column, $foreigners, $foreignData) } } elseif (strstr($column['True_Type'], 'set')) { $nullify_code = '3'; - } elseif ($foreigners && isset($foreigners[$column['Field']]) && $foreignData['foreign_link'] == false) { + } elseif ($foreigners + && isset($foreigners[$column['Field']]) + && $foreignData['foreign_link'] == false + ) { // foreign key in a drop-down $nullify_code = '4'; - } elseif ($foreigners && isset($foreigners[$column['Field']]) && $foreignData['foreign_link'] == true) { + } elseif ($foreigners + && isset($foreigners[$column['Field']]) + && $foreignData['foreign_link'] == true + ) { // foreign key with a browsing icon $nullify_code = '6'; } else { @@ -640,7 +648,9 @@ function PMA_getValueColumn($column, $backup_field, $column_name_appendix, $idindex, $data, $foreignData ); - } elseif ($GLOBALS['cfg']['LongtextDoubleTextarea'] && strstr($column['pma_type'], 'longtext')) { + } elseif ($GLOBALS['cfg']['LongtextDoubleTextarea'] + && strstr($column['pma_type'], 'longtext') + ) { $html_output = ' '; $html_output .= ''; $html_output .= '' @@ -652,6 +662,7 @@ function PMA_getValueColumn($column, $backup_field, $column_name_appendix, ); } elseif (strstr($column['pma_type'], 'text')) { + $html_output .= PMA_getTextarea( $column, $backup_field, $column_name_appendix, $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $text_dir, @@ -665,7 +676,8 @@ function PMA_getValueColumn($column, $backup_field, $column_name_appendix, } elseif ($column['pma_type'] == 'enum') { $html_output .= PMA_getPmaTypeEnum( - $paramsArrayForColumns, $column, $extracted_columnspec + $column, $backup_field, $column_name_appendix, $extracted_columnspec, + $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $data ); } elseif ($column['pma_type'] == 'set') { @@ -725,14 +737,16 @@ function PMA_getForeignLink($column, $backup_field, $column_name_appendix, list($db, $table) = $paramTableDbArray; $html_output = ''; $html_output .= $backup_field . "\n"; - $html_output .= ''; + $html_output .= ''; $html_output .= '' - . '' . str_replace("'", "\'", $titles['Browse']) . ''; @@ -803,7 +817,9 @@ function PMA_getTextarea($column, $backup_field, $column_name_appendix, $the_class = 'char'; $textAreaRows = $GLOBALS['cfg']['CharTextareaRows']; $textareaCols = $GLOBALS['cfg']['CharTextareaCols']; - } elseif (($GLOBALS['cfg']['LongtextDoubleTextarea'] && strstr($column['pma_type'], 'longtext'))) { + } elseif ($GLOBALS['cfg']['LongtextDoubleTextarea'] + && strstr($column['pma_type'], 'longtext') + ) { $textAreaRows = $GLOBALS['cfg']['TextareaRows']*2; $textareaCols = $GLOBALS['cfg']['TextareaCols']*2; } @@ -825,17 +841,23 @@ function PMA_getTextarea($column, $backup_field, $column_name_appendix, /** * Get HTML for enum type * - * @param array $column description of column in given table - * @param string $backup_field hidden input field - * @param string $column_name_appendix the name atttibute - * @param array $extracted_columnspec associative array containing type, - * spec_in_brackets and possibly - * enum_set_values (another array) + * @param type $column description of column in given table + * @param type $backup_field hidden input field + * @param type $column_name_appendix the name atttibute + * @param type $extracted_columnspec associative array containing type, + * spec_in_brackets and possibly + * enum_set_values (another array) + * @param type $unnullify_trigger validation string + * @param type $tabindex tab index + * @param type $tabindex_for_value offset for the values tabindex + * @param type $idindex id index + * @param type $data data to edit * - * @return string an html snippet + * @return type string an html snippet */ -function PMA_getPmaTypeEnum( - $column, $backup_field, $column_name_appendix, $extracted_columnspec +function PMA_getPmaTypeEnum($column, $backup_field, $column_name_appendix, + $extracted_columnspec, $unnullify_trigger, $tabindex, $tabindex_for_value, + $idindex, $data ) { $html_output = ''; if (! isset($column['values'])) { @@ -918,9 +940,9 @@ function PMA_getDropDownDependingOnLength( $html_output .= ''; } @@ -1487,13 +1510,16 @@ function PMA_getSubmitTypeDropDown($where_clause, $tabindex, $tabindex_for_value function PMA_getAfterInsertDropDown($where_clause, $after_insert, $found_unique_key) { $html_output = ''; echo ''; @@ -359,7 +366,8 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter if (! $is_querywindow) { echo '' . ''; @@ -372,7 +380,9 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter } /** - * prints bookmark fieldset + * Prints bookmark fieldset + * + * @return void * * @usedby PMA_sqlQueryForm() */ @@ -426,7 +436,9 @@ function PMA_sqlQueryFormBookmark() } /** - * prints bookmark fieldset + * Prints bookmark fieldset + * + * @return void * * @usedby PMA_sqlQueryForm() */ @@ -436,10 +448,16 @@ function PMA_sqlQueryFormUpload() $common_functions = PMA_CommonFunctions::getInstance(); $errors = array (); - $matcher = '@\.sql(\.(' . PMA_supportedDecompressions() . '))?$@'; // we allow only SQL here + // we allow only SQL here + $matcher = '@\.sql(\.(' . PMA_supportedDecompressions() . '))?$@'; if (!empty($GLOBALS['cfg']['UploadDir'])) { - $files = PMA_getFileSelectOptions($common_functions->userDir($GLOBALS['cfg']['UploadDir']), $matcher, (isset($timeout_passed) && $timeout_passed && isset($local_import_file)) ? $local_import_file : ''); + $files = PMA_getFileSelectOptions( + $common_functions->userDir($GLOBALS['cfg']['UploadDir']), $matcher, + (isset($timeout_passed) && $timeout_passed && isset($local_import_file)) + ? $local_import_file + : '' + ); } else { $files = ''; } diff --git a/libraries/sqlvalidator.class.php b/libraries/sqlvalidator.class.php index f9c64c65ba..9aec036b21 100644 --- a/libraries/sqlvalidator.class.php +++ b/libraries/sqlvalidator.class.php @@ -307,8 +307,9 @@ if (!$GLOBALS['sqlvalidator_error']) { * @return void * @access public */ - function setConnectionTechnology($connection_technology, $connection_technology_version) - { + function setConnectionTechnology( + $connection_technology, $connection_technology_version + ) { $this->connection_technology = $connection_technology; $this->connection_technology_version = $connection_technology_version; } // end of the "setConnectionTechnology()" function @@ -323,8 +324,9 @@ if (!$GLOBALS['sqlvalidator_error']) { * @return void * @access public */ - function appendConnectionTechnology($connection_technology, $connection_technology_version) - { + function appendConnectionTechnology( + $connection_technology, $connection_technology_version + ) { $this->connection_technology .= ' - ' . $connection_technology; $this->connection_technology_version .= ' - ' . $connection_technology_version; } // end of the "appendConnectionTechnology()" function diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php deleted file mode 100644 index 064930902c..0000000000 --- a/libraries/tbl_replace_fields.inc.php +++ /dev/null @@ -1,108 +0,0 @@ -checkTblChangeForm($key, $rownumber); -$common_functions = PMA_CommonFunctions::getInstance(); - -$possibly_uploaded_val = $file_to_insert->getContent(); - -if ($file_to_insert->isError()) { - $message .= $file_to_insert->getError(); -} -$file_to_insert->cleanUp(); - -if (false !== $possibly_uploaded_val) { - $val = $possibly_uploaded_val; -} else { - - // f i e l d v a l u e i n t h e f o r m - - if (isset($multi_edit_columns_type[$key])) { - $type = $multi_edit_columns_type[$key]; - } else { - $type = ''; - } - - // $key contains the md5() of the fieldname - if ($type != 'protected' && $type != 'set' && 0 === strlen($val)) { - // best way to avoid problems in strict mode (works also in non-strict mode) - if (isset($multi_edit_auto_increment) - && isset($multi_edit_auto_increment[$key]) - ) { - $val = 'NULL'; - } else { - $val = "''"; - } - } elseif ($type == 'set') { - if (! empty($_REQUEST['fields']['multi_edit'][$rownumber][$key])) { - $val = implode(',', $_REQUEST['fields']['multi_edit'][$rownumber][$key]); - $val = "'" . $common_functions->sqlAddSlashes($val) . "'"; - } else { - $val = "''"; - } - } elseif ($type == 'protected') { - // here we are in protected mode (asked in the config) - // so tbl_change has put this special value in the - // fields array, so we do not change the field value - // but we can still handle field upload - - // when in UPDATE mode, do not alter field's contents. When in INSERT - // mode, insert empty field because no values were submitted. If protected - // blobs where set, insert original fields content. - if (! empty($prot_row[$multi_edit_columns_name[$key]])) { - $val = '0x' . bin2hex($prot_row[$multi_edit_columns_name[$key]]); - } else { - $val = ''; - } - } elseif ($type == 'bit') { - $val = preg_replace('/[^01]/', '0', $val); - $val = "b'" . $common_functions->sqlAddSlashes($val) . "'"; - } elseif (! ($type == 'datetime' || $type == 'timestamp') - || $val != 'CURRENT_TIMESTAMP' - ) { - $val = "'" . $common_functions->sqlAddSlashes($val) . "'"; - } - - // Was the Null checkbox checked for this field? - // (if there is a value, we ignore the Null checkbox: this could - // be possible if Javascript is disabled in the browser) - if (! empty($multi_edit_columns_null[$key]) && ($val == "''" || $val == '')) { - $val = 'NULL'; - } - - // The Null checkbox was unchecked for this field - if (empty($val) - && ! empty($multi_edit_columns_null_prev[$key]) - && ! isset($multi_edit_columns_null[$key]) - ) { - $val = "''"; - } -} // end else (field value in the form) -unset($type); -?> diff --git a/libraries/transformations.lib.php b/libraries/transformations.lib.php index 062395cdf8..6ec78633a0 100644 --- a/libraries/transformations.lib.php +++ b/libraries/transformations.lib.php @@ -231,7 +231,7 @@ function PMA_setMIME($db, $table, $key, $mimetype, $transformation, WHERE `db_name` = \'' . $common_functions->sqlAddSlashes($db) . '\' AND `table_name` = \'' . $common_functions->sqlAddSlashes($table) . '\' AND `column_name` = \'' . $common_functions->sqlAddSlashes($key) . '\''; - $test_rs = PMA_query_as_controluser($test_qry, true, PMA_DBI_QUERY_STORE); + $test_rs = PMA_queryAsControlUser($test_qry, true, PMA_DBI_QUERY_STORE); if ($test_rs && PMA_DBI_num_rows($test_rs) > 0) { $row = @PMA_DBI_fetch_assoc($test_rs); @@ -267,7 +267,7 @@ function PMA_setMIME($db, $table, $key, $mimetype, $transformation, } if (isset($upd_query)) { - return PMA_query_as_controluser($upd_query); + return PMA_queryAsControlUser($upd_query); } else { return false; } diff --git a/libraries/url_generating.lib.php b/libraries/url_generating.lib.php index d3b64065c4..54d46b1414 100644 --- a/libraries/url_generating.lib.php +++ b/libraries/url_generating.lib.php @@ -32,8 +32,9 @@ if (! defined('PHPMYADMIN')) { * * @access public */ -function PMA_generate_common_hidden_inputs($db = '', $table = '', $indent = 0, $skip = array()) -{ +function PMA_generate_common_hidden_inputs($db = '', $table = '', + $indent = 0, $skip = array() +) { if (is_array($db)) { $params =& $db; $_indent = empty($table) ? $indent : $table; diff --git a/libraries/zip.lib.php b/libraries/zip.lib.php index 8fa801f847..6ecea2f581 100644 --- a/libraries/zip.lib.php +++ b/libraries/zip.lib.php @@ -17,7 +17,7 @@ if (! defined('PHPMYADMIN')) { * @package PhpMyAdmin * @see Official ZIP file format: http://www.pkware.com/support/zip-app-note */ -class zipfile +class ZipFile { /** * Whether to echo zip as it's built or return as string from -> file @@ -212,5 +212,5 @@ class zipfile } } // end of the 'file()' method -} // end of the 'zipfile' class +} // end of the 'ZipFile' class ?> diff --git a/main.php b/main.php index 1cb3a05483..9a78cba1c0 100644 --- a/main.php +++ b/main.php @@ -84,7 +84,7 @@ if ($server > 0 ) { echo '
  • '; include_once 'libraries/select_server.lib.php'; - PMA_select_server(true, true); + PMA_selectServer(true, true); echo '
  • '; } diff --git a/navigation.php b/navigation.php index d7a77593c2..c418fd5607 100644 --- a/navigation.php +++ b/navigation.php @@ -168,8 +168,8 @@ if (! $GLOBALS['server']) { if (count($GLOBALS['pma']->databases) >= $GLOBALS['cfg']['LeftDisplayDatabaseFilterMinimum']) { ?> - X + X = $GLOBALS['cfg']['LeftDisplayTableFilterMinimum']) { ?> - X + X sqlAddSlashes($db) . "'"; - PMA_query_as_controluser($sql, true, PMA_DBI_QUERY_STORE); + PMA_queryAsControlUser($sql, true, PMA_DBI_QUERY_STORE); } if ('import' == $mode) { - PMA_query_as_controluser( + PMA_queryAsControlUser( 'UPDATE ' . $pma_table . ',' . $pmd_table . ' SET ' . $pmd_table . '.`x`= ' . $pma_table . '.`x` * '. $scale_q . ', ' . $pmd_table . '.`y`= ' . $pma_table . '.`y` * '. $scale_q .' @@ -100,7 +100,7 @@ echo '
    ' . __('Import/Export coordinates for PDF schema') . 'backquote($GLOBALS['cfgRelation']['db']) . '.' . $common_functions->backquote($cfgRelation['pdf_pages']) . ' WHERE db_name = \'' . $common_functions->sqlAddSlashes($db) . '\'' diff --git a/pmd_relation_new.php b/pmd_relation_new.php index d188e81a70..bb8cb8b1cd 100644 --- a/pmd_relation_new.php +++ b/pmd_relation_new.php @@ -97,7 +97,7 @@ if ($common_functions->isForeignKeySupported($type_T1) . '\'' . $common_functions->sqlAddSlashes($T1) . '\',' . '\'' . $common_functions->sqlAddSlashes($F1) . '\')'; - if (PMA_query_as_controluser($q, false, PMA_DBI_QUERY_STORE)) { + if (PMA_queryAsControlUser($q, false, PMA_DBI_QUERY_STORE)) { PMD_return_new(1, __('Internal relation added')); } else { PMD_return_new(0, __('Error: Relation not added.')); diff --git a/pmd_relation_upd.php b/pmd_relation_upd.php index 125bc1c658..3e81ee258b 100644 --- a/pmd_relation_upd.php +++ b/pmd_relation_upd.php @@ -50,7 +50,7 @@ if ($common_functions->isForeignKeySupported($type_T1) } if ($try_to_delete_internal_relation) { // internal relations - PMA_query_as_controluser( + PMA_queryAsControlUser( 'DELETE FROM ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' . $cfg['Server']['relation'].' WHERE ' diff --git a/pmd_save_pos.php b/pmd_save_pos.php index 539091717e..a0cfc944ea 100644 --- a/pmd_save_pos.php +++ b/pmd_save_pos.php @@ -40,14 +40,14 @@ foreach ($post_params as $one_post_param) { foreach ($t_x as $key => $value) { $KEY = empty($IS_AJAX) ? urldecode($key) : $key; // table name decode (post PDF exp/imp) list($DB,$TAB) = explode(".", $KEY); - PMA_query_as_controluser( + PMA_queryAsControlUser( 'DELETE FROM ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' . $common_functions->backquote($GLOBALS['cfgRelation']['designer_coords']) . ' WHERE `db_name` = \'' . $common_functions->sqlAddSlashes($DB) . '\'' . ' AND `table_name` = \'' . $common_functions->sqlAddSlashes($TAB) . '\'', true, PMA_DBI_QUERY_STORE ); - PMA_query_as_controluser( + PMA_queryAsControlUser( 'INSERT INTO ' . $common_functions->backquote($GLOBALS['cfgRelation']['db']) . '.' . $common_functions->backquote($GLOBALS['cfgRelation']['designer_coords']) . ' (db_name, table_name, x, y, v, h)' . ' VALUES (' diff --git a/po/af.po b/po/af.po index 84209eda4d..cf7a48dd55 100644 --- a/po/af.po +++ b/po/af.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -35,53 +35,54 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Soek" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Gaan" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 #, fuzzy msgid "Description" msgstr "geen Beskrywing" @@ -114,13 +115,13 @@ msgstr "Tabel kommentaar" msgid "Table comments" msgstr "Tabel kommentaar" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "Tabel kommentaar" msgid "Column" msgstr "Kolom name" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tipe" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "Skakels na" msgid "Comments" msgstr "Kommentaar" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "Kommentaar" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nee" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "Nee" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "Sien die storting (skema) van die databasis" msgid "No tables found in database." msgstr "Geen tabelle in databasis gevind nie." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Kies Alles" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Selekteer Niks" @@ -325,12 +326,12 @@ msgstr "" msgid "Switch to copied database" msgstr "" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "" @@ -358,17 +359,17 @@ msgstr "Vertoon PDF skema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rye" @@ -383,7 +384,7 @@ msgstr "in gebruik" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 #, fuzzy msgid "Creation" msgstr "Skep" @@ -391,14 +392,14 @@ msgstr "Skep" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "" @@ -462,7 +463,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Of" @@ -507,60 +508,28 @@ msgstr "Doen Navraag" msgid "Access denied" msgstr "Toegang Geweier" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "ten minste een van die woorde" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "alle woorde" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "die presiese frase" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "as 'n regular expression" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Soek resultate vir \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s resultate binne tabel %s" -msgstr[1] "%s resultate binne tabel %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Beloer Data" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Stort data vir tabel" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Verwyder" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -568,31 +537,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Totaal: %s ooreenkomste" msgstr[1] "Totaal: %s ooreenkomste" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s resultate binne tabel %s" +msgstr[1] "%s resultate binne tabel %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Beloer Data" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Stort data vir tabel" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Verwyder" + +#: db_search.php:362 msgid "Search in database" msgstr "Soek in databasis" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Woord(e) of waarde(s) om voor te soek (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Vind:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Binne tabel(le):" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -635,8 +636,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -644,7 +645,7 @@ msgstr "" msgid "View" msgstr "" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -654,97 +655,93 @@ msgstr "" msgid "Sum" msgstr "Som" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Met gekose:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Kies Alles" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Kies Niks" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Maak Leeg" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Verwyder" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Kontroleer tabel" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Herstel tabel" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiseer tabel" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Vervang tabel data met leer (file)" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Vervang tabel data met leer (file)" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" @@ -757,9 +754,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databasis" @@ -777,17 +774,17 @@ msgstr "Skep" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Aksie" @@ -821,7 +818,7 @@ msgstr "Slegs struktuur" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Kontroleer tabel" @@ -969,8 +966,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1033,13 +1030,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Jou SQL-navraag is suksesvol uitgevoer" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Terug" @@ -1129,8 +1126,8 @@ msgstr "Die wagwoord is leeg!" msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1151,7 +1148,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1181,14 +1178,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 #, fuzzy msgid "Total" msgstr "totaal" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1220,7 +1217,7 @@ msgstr "Bediener Keuse" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1287,13 +1284,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1347,7 +1344,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1388,11 +1385,11 @@ msgstr "%s tabel(le)" msgid "Questions" msgstr "Operasies" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1418,8 +1415,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Geen" @@ -1519,7 +1516,7 @@ msgstr "Algemene verwantskap funksies" msgid "Current settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy msgid "Chart Title" msgstr "Geen tabelle" @@ -1604,7 +1601,7 @@ msgstr "Verduidelik SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "" @@ -1706,10 +1703,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Export" @@ -1764,9 +1761,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1795,9 +1792,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1896,7 +1893,7 @@ msgstr "Verwyder" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1938,8 +1935,8 @@ msgstr "SQL-stelling" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Verander" @@ -1954,7 +1951,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2521,16 +2518,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2645,8 +2642,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Operasies" @@ -2707,7 +2704,7 @@ msgid "The row has been deleted" msgstr "Die ry is verwyder" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Vermoor" @@ -2734,30 +2731,30 @@ msgstr "totaal" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Skakel nie gevind nie" @@ -2828,56 +2825,56 @@ msgstr "HTTP Koekies moet van nou af geaktifeer wees." msgid "Javascript must be enabled past this point" msgstr "HTTP Koekies moet van nou af geaktifeer wees." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Geen indeks gedefinieer!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indekse" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Uniek" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Kommentaar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Die primere sleutel is verwyder" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s is verwyder" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "databasisse" @@ -2887,7 +2884,7 @@ msgstr "databasisse" msgid "Server" msgstr "" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2900,105 +2897,105 @@ msgstr "" msgid "Structure" msgstr "Struktuur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Voeg by" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operasies" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Navraag dmv Voorbeeld" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Regte" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Gebruiker" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Biner" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fout" @@ -3041,71 +3038,71 @@ msgstr "Geen tabelle" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Soek in databasis" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Soek in databasis" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %s is vernoem na %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3113,23 +3110,23 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funksie" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "Operasies" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Waarde" @@ -3139,7 +3136,7 @@ msgstr "Waarde" msgid "Table Search" msgstr "Soek" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3274,14 +3271,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3537,8 +3534,8 @@ msgstr "Welkom by %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3646,12 +3643,12 @@ msgstr "Tabel" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Overhead" @@ -3766,18 +3763,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-stelling" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3865,7 +3862,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3875,8 +3872,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -4071,7 +4068,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4345,7 +4342,7 @@ msgid "Character set of the file" msgstr "Karakterstel van die leer:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formaat" @@ -4662,7 +4659,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5914,7 +5911,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL-stelling" @@ -6228,21 +6225,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6300,8 +6297,8 @@ msgstr "Skep 'n nuwe bladsy" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Naam" @@ -6418,8 +6415,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:285 @@ -6427,7 +6424,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Karakterstel van die leer:" @@ -6901,8 +6898,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6972,7 +6969,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy msgid "Definition" @@ -7042,7 +7039,7 @@ msgstr "Vertoon Funksies" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Gasheer (host)" @@ -7245,8 +7242,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." @@ -7411,79 +7408,79 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Biner" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "" " Omrede sy lengte,
    is hierdie veld moontlik nie veranderbaar nie " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Biner - moenie verander nie" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7511,7 +7508,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Stuur" @@ -7529,7 +7526,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Wil jy regtig " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Geen verandering" @@ -7781,7 +7778,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Geboekmerkde SQL-stelling" @@ -7828,6 +7825,10 @@ msgstr "" msgid "no description" msgstr "geen Beskrywing" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Kies Niks" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7863,8 +7864,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7889,7 +7890,7 @@ msgstr "Enige gebruiker" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7920,10 +7921,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7934,7 +7935,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7950,7 +7951,7 @@ msgstr "Tabel %s is verwyder" msgid "Event %1$s has been created." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7960,14 +7961,14 @@ msgstr "" msgid "Edit event" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7982,7 +7983,7 @@ msgstr "Gebruiker naam" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8016,13 +8017,13 @@ msgstr "Einde" msgid "On completion preserve" msgstr "Voltooi invoegings" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8047,7 +8048,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8068,7 +8069,7 @@ msgstr "" msgid "Returns" msgstr "Databasis statistieke" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8076,133 +8077,133 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Kolom name" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy msgid "Direction" msgstr "Skep" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lengte/Waardes*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy msgid "Remove last parameter" msgstr "Hernoem tabel na" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lengte/Waardes*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy msgid "Return options" msgstr "Databasis statistieke" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8512,7 +8513,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8545,52 +8546,52 @@ msgstr "Soek in databasis" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Hardloop SQL stellings op databasis %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Hardloop SQL stellings op databasis %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Wys hierdie navraag weer hier" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Kyk slegs" @@ -8697,7 +8698,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -8751,12 +8752,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primere" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Volteks" @@ -8770,12 +8771,12 @@ msgstr "" msgid "after %s" msgstr "Na %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Voeg 'n nuwe veld by" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8822,7 +8823,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8972,8 +8973,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Gebruiker" @@ -9093,17 +9094,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Geen databasisse" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Verander tabel sorteer volgens" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9127,7 +9128,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9190,47 +9191,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Relasie uitsig" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Export" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "in navraag" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Hernoem tabel na" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Gebruiker naam" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Skep" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy msgid "Active options" msgstr "Aksie" @@ -9403,13 +9404,13 @@ msgstr "" msgid "Files" msgstr "Velde" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9425,7 +9426,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -9454,12 +9455,12 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 #, fuzzy msgid "Enable Statistics" msgstr "Databasis statistieke" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9705,7 +9706,7 @@ msgid "None" msgstr "Geen" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9723,7 +9724,7 @@ msgstr "" msgid "Global privileges" msgstr "Geen Regte" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9744,7 +9745,7 @@ msgstr "Wys PHP informasie" msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9795,7 +9796,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Verander Regte" @@ -9810,7 +9811,7 @@ msgid "Export all" msgstr "Export" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Enige" @@ -9830,115 +9831,115 @@ msgstr "Regte" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy msgid "User has been added." msgstr "Veld %s is verwyder" @@ -10218,48 +10219,48 @@ msgstr "Wys tabelle" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "Wys tabelle" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy msgid "Related links:" msgstr "Operasies" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "Navraag dmv Voorbeeld" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Funksie" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10267,117 +10268,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Stellings" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 #, fuzzy msgid "Command" msgstr "Kommentaar" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10385,78 +10386,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10464,7 +10465,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10472,42 +10473,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10515,33 +10516,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10550,243 +10551,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakterstel van die leer:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10794,99 +10795,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10894,18 +10895,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10913,67 +10914,67 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sa" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy msgid "Add chart" msgstr "Voeg 'n nuwe veld by" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Voortgebring deur" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10982,7 +10983,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10990,18 +10991,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11009,11 +11010,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11021,89 +11022,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy msgid "Preset chart" msgstr "Hernoem tabel na" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Kies Tabelle" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Voeg 'n nuwe gebruiker by" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL-stelling" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Ry Statistiek" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Kies Alles" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "Navraag dmv Voorbeeld" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Records" msgid "%d second" @@ -11111,7 +11112,7 @@ msgid_plural "%d seconds" msgstr[0] "Rekords" msgstr[1] "Rekords" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11879,35 +11880,35 @@ msgstr "Toets referential integrity:" msgid "Showing tables" msgstr "Wys tabelle" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Spasie verbruik" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effektief" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Ry Statistiek" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamies" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Ry lengte" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Ry grootte" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11931,7 +11932,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11986,54 +11987,54 @@ msgstr "'n Indeks is bygevoeg op %s" msgid "Show more actions" msgstr "Wys PHP informasie" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy msgid "Move columns" msgstr "Voeg 'n nuwe veld by" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Drukker mooi (print view)" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relasie uitsig" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Stel tabel struktuur voor" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy msgid "Add column" msgstr "Voeg 'n nuwe veld by" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "By Einde van Tabel" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "By Begin van Tabel" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Na %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Skep 'n indeks op %s kolomme" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12545,8 +12546,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12673,8 +12674,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ar.po b/po/ar.po index c9ac385385..a059a920d2 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2011-09-24 21:48+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" @@ -38,53 +38,54 @@ msgstr "" "لا يمكن تحديث نافذة المتصفح المستهدفة,, يبدو أنك أغلقت الرئيسية أو أن " "مستعرضك يمنع التحديث عبر النوافذ بسبب إعدادات الأمان." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "بحث" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "تنفيذ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "اسم المفتاح" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "الوصف" @@ -117,13 +118,13 @@ msgstr "ملاحظة قاعدة البيانات: " msgid "Table comments" msgstr "تعليقات الجدول" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "تعليقات الجدول" msgid "Column" msgstr "عمود" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "نوع" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "مرتبط بـ" msgid "Comments" msgstr "تعليقات" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "تعليقات" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "لا" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "لا" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "عرض بنية قاعدة البيانات" msgid "No tables found in database." msgstr "لا توجد جداول في قاعدة البيانات هذه!." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "تحديد الكل" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "إلغاء تحديد الكل" @@ -323,12 +324,12 @@ msgstr "أضف قيود" msgid "Switch to copied database" msgstr "التبديل إلى قاعدة البيانات المنسوخة" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Collation" @@ -339,8 +340,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: db_operations.php:639 msgid "Edit or export relational schema" @@ -351,17 +352,17 @@ msgstr "بناء الارتباطات" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "جدول" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "صفوف" @@ -376,21 +377,21 @@ msgstr "قيد الإستعمال" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "الإنشاء" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "التحديث الأخير" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "التحقق الأخير" @@ -457,7 +458,7 @@ msgid "Del" msgstr "حذف" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "أو" @@ -498,64 +499,28 @@ msgstr "إرسال الإستعلام" msgid "Access denied" msgstr "ممنوع الوصول" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "على الأقل أحد الكلمات" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "كل الكلمات" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "الجملة بالضبط" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "كتعبير قياسي" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "نتائج البحث عن \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s مطابقة في الجدول %s" -msgstr[1] "%s مطابقة في الجدول %s" -msgstr[2] "%s مطابقة في الجدول %s" -msgstr[3] "%s مطابقة في الجدول %s" -msgstr[4] "%s مطابقة في الجدول %s" -msgstr[5] "%s مطابقة في الجدول %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "استعراض" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "حذف التشابهات لجدول %s ؟" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "حذف" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -566,27 +531,63 @@ msgstr[3] "المجموع: %sتطابق" msgstr[4] "المجموع: %sتطابق" msgstr[5] "المجموع: %sتطابق" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s مطابقة في الجدول %s" +msgstr[1] "%s مطابقة في الجدول %s" +msgstr[2] "%s مطابقة في الجدول %s" +msgstr[3] "%s مطابقة في الجدول %s" +msgstr[4] "%s مطابقة في الجدول %s" +msgstr[5] "%s مطابقة في الجدول %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "استعراض" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "حذف التشابهات لجدول %s ؟" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "حذف" + +#: db_search.php:362 msgid "Search in database" msgstr "بحث في قاعدة البيانات" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "ابحث:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "الكلمات مفصولة بمسافة (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "داخل الجداول:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "داخل العمود:" @@ -625,8 +626,8 @@ msgstr "التتبع غير نشط." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -634,7 +635,7 @@ msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف ير msgid "View" msgstr "عرض" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -644,93 +645,89 @@ msgstr "إستنساخ" msgid "Sum" msgstr "المجموع" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s هو محرك التخزين الإفتراضي لخادم MySQL" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "مع المحدد:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "تحديد الكل" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "إلغاء تحديد الكل" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "تحقق من الجداول التي تحمل عبء زائد" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "تصدير" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "إفراغ" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "حذف" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "التحقق من الجدول" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "تحسين الجدول" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "إصلاح الجدول" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "تحليل الجدول" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "إضافة بادئة للجدول" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "استبدال بادئة الجدول" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "نسخ الجدول مع البادئة" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "قاموس البيانات" @@ -743,9 +740,9 @@ msgstr "الجداول المتعقبة" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "قاعدة البيانات" @@ -762,17 +759,17 @@ msgstr "أنشئ" msgid "Updated" msgstr "محدث" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "الحالة" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "العملية" @@ -804,7 +801,7 @@ msgstr "لقطة للبناء الهيكلي" msgid "Untracked tables" msgstr "الجداول الغير متتبعة" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "تتبع الجدول" @@ -941,8 +938,8 @@ msgstr "" #: import.php:86 #, 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 "" "يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل " "المشكلة." @@ -1013,13 +1010,13 @@ msgstr "" "إنهاء الإستيراد ,, يجب زيادة المدة المحددة لتنفيذ php" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "تم تنفيذ إستعلام SQL بنجاح" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "رجوع" @@ -1109,8 +1106,8 @@ msgstr "كلمة المرور فارغة !" msgid "The passwords aren't the same!" msgstr "كلمتا المرور غير متشابهتان !" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "إضافة مستخدم" @@ -1128,7 +1125,7 @@ msgid "Close" msgstr "أغلاق" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1155,13 +1152,13 @@ msgstr "بيانات ثابتة" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "مجموع كلي" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "آخر" @@ -1191,7 +1188,7 @@ msgstr "ترافيك الخادم (بالكيلو بايت)" msgid "Connections since last refresh" msgstr "الإتصالات منذ آخر تحديث" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "عمليات" @@ -1257,13 +1254,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "ميجابايت" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "كيلوبايت" @@ -1319,7 +1316,7 @@ msgstr "بايتات أُرسلت" msgid "Bytes received" msgstr "بايتات أُستلمت" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "اتصالات" @@ -1360,11 +1357,11 @@ msgstr "%s جدول (جداول)" msgid "Questions" msgstr "العمليات" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "بيانات سير" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "الإعدادات" @@ -1387,8 +1384,8 @@ msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "لا شيء" @@ -1483,7 +1480,7 @@ msgstr "تغيير الإعدادات" msgid "Current settings" msgstr "الإعدادات الحالية" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "عنوان الرسم البياني" @@ -1572,7 +1569,7 @@ msgstr "شرح SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "وقت" @@ -1674,10 +1671,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "استيراد" @@ -1729,9 +1726,9 @@ msgstr "المتغيرات المستعملة" msgid "Test" msgstr "إختبار" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "ألغاء" @@ -1759,9 +1756,9 @@ msgstr "إزالة العمود" msgid "Adding Primary Key" msgstr "إضافة مفتاح رئيسي" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "موافق" @@ -1843,7 +1840,7 @@ msgstr "حذف" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "تعريف الدالة المخزنة يجب أن تحتوي جملة RETURN !" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1888,8 +1885,8 @@ msgstr "إظهار صندوق الإستعلام" msgid "No rows selected" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "تغيير" @@ -1904,7 +1901,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2410,16 +2407,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "لكل ثانية" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "لكل دقيقة" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "لكل ساعة" @@ -2527,8 +2524,8 @@ msgstr "رتب حسب المفتاح" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "خيارات" @@ -2589,7 +2586,7 @@ msgid "The row has been deleted" msgstr "لقد تم حذف الصف" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "إبطال" @@ -2616,31 +2613,31 @@ msgstr "المجموع" msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "عرض الطباعة (مع النصوص الكاملة)." -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "إظهار بناء ملف PDF" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "تكوين" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" @@ -2713,55 +2710,55 @@ msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." msgid "Javascript must be enabled past this point" msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "لم يتم تعريف الفهرس!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "فهارس" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "فريد" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "محزم" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "تعليق" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "لقد تم حذف المفتاح الأساسي" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "تم حذف الفهرس %s" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "قاعدة بيانات" @@ -2771,7 +2768,7 @@ msgstr "قاعدة بيانات" msgid "Server" msgstr "خادم" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2784,104 +2781,104 @@ msgstr "خادم" msgid "Structure" msgstr "بناء" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "إدخال" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "تتبع" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "قاعدة البيانات فارغة!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "الإمتيازات" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "أحداث" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "المستخدم" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "تزامن" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "سجل ثنائي" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "متغيرات" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "مجموعات المحارف" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "محركات" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "خطأ" @@ -2935,72 +2932,72 @@ msgstr "الجداول الأخيرة" msgid "There are no recent tables" msgstr "لا يوجد جداول أخيرة" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "لايوجد معلومات تفصيلية لحالة محرك التخزين هذا." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s متوفر في خادم MySQL هذا." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s معطل في خادم MySQL هذا." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "حالة الجدول غير معروفة:" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "المظهر %s غير موجود!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "قاعدة البيانات غير صالحة" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "اسم الجدول غير صالح" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "تم إعادة تسمية الجدول %s إلى %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "لا يمكن حفظ تفضيلات جدول UI" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3008,22 +3005,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "دالة" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "القيمة" @@ -3033,7 +3030,7 @@ msgstr "القيمة" msgid "Table Search" msgstr "بحث" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3167,14 +3164,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3434,8 +3431,8 @@ msgstr "أهلا بك في %s" #: libraries/auth/config.auth.lib.php:98 #, 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$ssetup script%2$s لإنشائه." #: libraries/auth/config.auth.lib.php:110 @@ -3546,12 +3543,12 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "بيانات" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "الحمل الزائد" @@ -3664,18 +3661,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "إنجليزي" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "استعلام SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3763,7 +3760,7 @@ msgstr "" msgid "Click to toggle" msgstr "إضغط للإختيار" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "تصفح كمبيوترك." @@ -3773,8 +3770,8 @@ msgstr "تصفح كمبيوترك." msgid "Select from the web server upload directory %s:" msgstr "إختر مجلد الرفع من الخادم %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." @@ -3958,7 +3955,7 @@ msgstr "إستعادة القيمة الإفتراضية" msgid "Allow users to customize this value" msgstr "السماح للمستخدمين بتخصيص هذه القيمة" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4236,7 +4233,7 @@ msgid "Character set of the file" msgstr "مجموعة الأحرف للملف" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "صيغة" @@ -4532,7 +4529,7 @@ msgstr "إطار التصفح" msgid "Customize appearance of the navigation frame" msgstr "تخصيص مظهر إطار التصفح" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "خوادم" @@ -5766,7 +5763,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6082,21 +6079,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6153,8 +6150,8 @@ msgstr "أنشئ الجدول" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "الاسم" @@ -6275,8 +6272,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:285 @@ -6284,7 +6281,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "شيفرة أحرف الملف:" @@ -6767,8 +6764,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6844,7 +6841,7 @@ msgstr "حدث" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -6919,7 +6916,7 @@ msgstr "أنواع MIME المتوفرة" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "المزود" @@ -7124,8 +7121,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." @@ -7295,77 +7292,77 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "أخفاء" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "ثنائي" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "بسبب طوله,
    فمن المحتمل أن هذا الحقل غير قابل للتحرير " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "ثنائي - لاتحرره" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "وبعدها" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "عدل الصف التالي" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7393,7 +7390,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "إرسال" @@ -7413,7 +7410,7 @@ msgstr "إضافة حقل جديد" msgid "Do you really want to execute the following query?" msgstr "هل تريد حقا" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "لا تغييرات" @@ -7667,7 +7664,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "رجاء راجع التوثيق لكيفية تحديث جدول Column_comments." -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "علامة مرجعية SQL-استعلام" @@ -7714,6 +7711,10 @@ msgstr "" msgid "no description" msgstr "بدون وصف" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "إلغاء تحديد الكل" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7748,8 +7749,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "متغير" @@ -7774,7 +7775,7 @@ msgstr "أي مستخدم" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "استخدم حقل نص" @@ -7805,10 +7806,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7821,7 +7822,7 @@ msgstr "فشل الإستعلام \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "عفواً , فشل في إستعادة الإجراء المزال" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "الإستعلام الإحتياطي:" @@ -7838,7 +7839,7 @@ msgstr "تم تعديل الإجراء %1$s" msgid "Event %1$s has been created." msgstr "تم إنشاء الإجراء %1$s." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "حصل خطأ أثناء معالجة طلبك: " @@ -7849,14 +7850,14 @@ msgstr "حصل خطأ أثناء معالجة طلبك: " msgid "Edit event" msgstr "حدث" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "خطأ في معالجة الطلب" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7871,7 +7872,7 @@ msgstr "نوع الحدث" msgid "Event type" msgstr "نوع الحدث" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7909,13 +7910,13 @@ msgstr "نهاية" msgid "On completion preserve" msgstr "إدخال كامل" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7940,7 +7941,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7962,7 +7963,7 @@ msgstr "" msgid "Returns" msgstr "خيارات الجدول" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 #, fuzzy #| msgid "" #| "You are using PHP's deprecated 'mysql' extension, which is not capable of " @@ -7978,121 +7979,121 @@ msgstr "" "المتعددة. فتنفيذ بعض الإجراءات المخزنة قد تفشل! الرجاء استخدام " "ملحق 'mysqli' لتجنب أي مشاكل." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "نوع الإجراء غير صحيح: %s" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "عفواً , فشل في إستعادة الإجراء المزال" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "تم تعديل الإجراء %1$s" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "تم إنشاء الإجراء %1$s." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "تعديل الإجراء" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "اسم العمود" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "الإنشاء" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "الطول/القيمة" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "إضافة حقل جديد" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "حذف قاعدة البيانات" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "الطول/القيمة" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "خيارات الجدول" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "نوع الاستعلام" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8103,18 +8104,18 @@ msgstr[3] "%d تأثر بالإجراء الأخير" msgstr[4] "%d تأثر بالإجراء الأخير" msgstr[5] "%d تأثر بالإجراء الأخير" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "نتائج تنفيذ الإجراء %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "تنفيذ" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8440,7 +8441,7 @@ msgstr "rtl" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Current server" msgid "Current Server" @@ -8473,52 +8474,52 @@ msgstr "" msgid "Click to select" msgstr "إضغط للإختيار" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "لا تخزن على هذا الاستعلام من خارج النافذة" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "عرض هذا الاستعلام هنا مرة أخرى " -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "عرض فقط" @@ -8625,7 +8626,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "فهرست" @@ -8679,12 +8680,12 @@ msgid "As defined:" msgstr "كما هو معرف:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "أساسي" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "النص كاملا" @@ -8698,13 +8699,13 @@ msgstr "" msgid "after %s" msgstr "بعد %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "أضف إلى الملاحظات" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8753,7 +8754,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "يظهر رابطا لهذه الصورة (direct blob download, i.e.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8948,8 +8949,8 @@ msgid "Protocol version" msgstr "نسخة البروتوكول" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "المستخدم" @@ -9053,8 +9054,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:357 #, php-format @@ -9070,17 +9071,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "لايوجد قواعد بيانات" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "اسم الجدول" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9105,7 +9106,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9169,49 +9170,49 @@ msgstr "" msgid "Number of tables" msgstr "عدد الجداول" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation view" msgid "Relation operator" msgstr "عرض الروابط" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "تصدير" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "في الاستعلام" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename table to" msgid "Rename to" msgstr "تغيير اسم جدول إلى" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "اسم المستخدم" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "تكوين" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9385,13 +9386,13 @@ msgstr "" msgid "Files" msgstr "الملفات" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "احذف الاستعلامات المعروضة" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" @@ -9407,7 +9408,7 @@ msgstr "موضع" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "معلومات" @@ -9440,11 +9441,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "مكن الإحصائيات" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9692,7 +9693,7 @@ msgid "None" msgstr "لا شيء" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" @@ -9709,7 +9710,7 @@ msgstr "إدارة" msgid "Global privileges" msgstr "صلاحيات عامة" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" @@ -9729,7 +9730,7 @@ msgstr "بيانات الدخول" msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9780,7 +9781,7 @@ msgstr "تم حذف المستخدمين المحددين بنجاح." msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "تحرير الامتيازات" @@ -9795,7 +9796,7 @@ msgid "Export all" msgstr "تصدير" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "أي" @@ -9817,119 +9818,119 @@ msgstr "الإمتيازات" msgid "Users overview" msgstr "معلومات المستخدم" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "منح" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "احذف المستخدمين المحددين" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "قبل أن تكمل." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... أبق القديم." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... احذف القديم من جداول المستخدمين." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "عام" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "حرف شامل" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "The row has been deleted" msgid "User has been added." @@ -10211,51 +10212,51 @@ msgstr "شاهد الجدول" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show tables" msgid "Show unformatted values" msgstr "شاهد الجدول" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "الروابط" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "نوع الاستعلام" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Actions" msgid "Instructions" msgstr "أفعال" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10263,117 +10264,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "تخصيص صفحة بدء التشغيل" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "أوامر" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "استلم" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "أرسل" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "محاولات أخفقت" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "ألغي" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "رقم" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "أمر" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10381,78 +10382,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10460,7 +10461,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10468,42 +10469,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10511,33 +10512,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10546,244 +10547,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "هيئة الملفات المستوردة" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10791,99 +10792,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10891,18 +10892,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10910,72 +10911,72 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "التتبع غير نشط." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ابدأ" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "إضافة حقل جديد" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "حدث" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "إضافه/حذف عمود حقل" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "إستعادة القيمة الإفتراضية" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10984,7 +10985,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10992,18 +10993,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11011,11 +11012,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11023,93 +11024,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "حذف الرسم البياني" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "اختر الجداول" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "اسم الجدول غير صالح" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "أضف مستخدم جديد" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "إحصائيات" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "اختر الجداول" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "نوع الاستعلام" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11121,7 +11122,7 @@ msgstr[3] "الثانية" msgstr[4] "الثانية" msgstr[5] "الثانية" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11890,35 +11891,35 @@ msgstr "تحديد التكامل المرجعي:" msgid "Showing tables" msgstr "عرض الجداول" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "المساحة المستخدمة" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "فعال" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "إحصائيات" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "ديناميكي" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "طول الصف" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "مقاس الصف " -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11941,7 +11942,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "قيود المفتاح الغريب" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11995,53 +11996,53 @@ msgstr "تم إضافة الفهرس في %s" msgid "Show more actions" msgstr "عرض المزيد من العمليات" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "إضافة أعمدة" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "عرض نسخة للطباعة" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "عرض العلاقات" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "اقترح بناء الجدول" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "إضافة عمود" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "في نهاية الجدول" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "في بداية الجدول" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "بعد %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "إنشاء فهرس للعمود %s" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "مقسم" @@ -12569,8 +12570,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12703,8 +12704,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13680,8 +13681,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 c9fcadcf5d..ceaf64b38d 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: azerbaijani \n" -"Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" @@ -35,53 +35,54 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Axtarış" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Davam" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Açar söz" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Haqqında" @@ -114,13 +115,13 @@ msgstr "Baza qısa izahatı: " msgid "Table comments" msgstr "Cedvel haqqında qısa izahat" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "Cedvel haqqında qısa izahat" msgid "Column" msgstr "Sütun adları" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "Links to" msgid "Comments" msgstr "Qısa İzahatlar" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "Qısa İzahatlar" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Xeyir" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "Xeyir" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "Me'lumat bazasının sxemini göster" msgid "No tables found in database." msgstr "Me'lumat bazasında cedvel yoxdur." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Hamısını Seç" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Heç birini seçme" @@ -326,12 +327,12 @@ msgstr "" msgid "Switch to copied database" msgstr "Kopyalanmış cedvele keç" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 #, fuzzy msgid "Collation" @@ -360,17 +361,17 @@ msgstr "Relational schema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Cedvel" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Sıra sayı" @@ -385,21 +386,21 @@ msgstr "istifadede" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Quruluş" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "En son yenilenme" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "En son yoxlama" @@ -464,7 +465,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ya da" @@ -509,60 +510,28 @@ msgstr "Emri İcra Et" msgid "Access denied" msgstr "Giriş Tesdiq Edilmedi" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "sözlerin en azından birini" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "bütün sözleri" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "tamamile eyni sözü" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "requlyar ifade (regular expression) olaraq" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" üçün axtarış neticeleri %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)" -msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "İçindekiler" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Sxemi çıxarılan cedvel" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Sil" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -570,31 +539,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Cemi: %s uyğunluq" msgstr[1] "Cemi: %s uyğunluq" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)" +msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "İçindekiler" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Sxemi çıxarılan cedvel" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Sil" + +#: db_search.php:362 msgid "Search in database" msgstr "" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Axtarmaq üçün söz(ler) ve ya deyer(ler) (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Tap:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Sözler boşluq ifadesi (\" \") ile ayrılmışdır." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Inside table(s):" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -637,8 +638,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -646,7 +647,7 @@ msgstr "" msgid "View" msgstr "" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 #, fuzzy @@ -657,97 +658,93 @@ msgstr "Relations" msgid "Sum" msgstr "Cemi" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Seçilenleri:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Hamısını Seç" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Heç Birini Seçme" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Leğv et" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Cedveli yoxla" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Cedveli optimallaşdır" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Cedveli te'mir et" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Cedveli analiz et" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Replace table data with file" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Me'lumat lüğeti" @@ -760,9 +757,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Me'lumat Bazası" @@ -780,17 +777,17 @@ msgstr "Qur" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Fealiyyetler" @@ -824,7 +821,7 @@ msgstr "Sadece quruluş" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Cedveli yoxla" @@ -976,8 +973,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1040,13 +1037,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL sorğunuz müveffeqiyyetle icra edilmişdir" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Geri" @@ -1145,8 +1142,8 @@ msgstr "Parol boşdur!" msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1169,7 +1166,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1199,13 +1196,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Cemi" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1237,7 +1234,7 @@ msgstr "Quraşdırılmış Serverler" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Prosesler" @@ -1303,13 +1300,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1367,7 +1364,7 @@ msgstr "" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Elaqeler" @@ -1408,11 +1405,11 @@ msgstr "%s cedvel" msgid "Questions" msgstr "Emeliyyatlar" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Neqliyyat" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1438,8 +1435,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Heç biri" @@ -1539,7 +1536,7 @@ msgstr "Ümumi elaqe variantları" msgid "Current settings" msgstr "Ümumi elaqe variantları" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1625,7 +1622,7 @@ msgstr "SQL-i İzah Et" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Müddet" @@ -1731,10 +1728,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" @@ -1789,9 +1786,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1822,9 +1819,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Müveffeqiyyetle" @@ -1925,7 +1922,7 @@ msgstr "%s silinir" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1967,8 +1964,8 @@ msgstr "SQL sorğusu" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Deyişdir" @@ -1983,7 +1980,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2552,16 +2549,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "saniyede" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "deqiqede" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "saatda" @@ -2676,8 +2673,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Emeliyyatlar" @@ -2740,7 +2737,7 @@ msgid "The row has been deleted" msgstr "Setir silindi" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Söndür" @@ -2767,30 +2764,30 @@ msgstr "cemi" msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF sxemini göster" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Server versiyası" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Link tapılmadı" @@ -2861,56 +2858,56 @@ msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalı msgid "Javascript must be enabled past this point" msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "İndeks te'yin edilmedi!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksler" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Qısa İzahatlar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Birinci dereceli açar leğv edildi" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "%s indeksi leğv edildi" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Me'lumat Bazaları" @@ -2920,7 +2917,7 @@ msgstr "Me'lumat Bazaları" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2933,106 +2930,106 @@ msgstr "Server" msgid "Structure" msgstr "Quruluş" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Elave et" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Emeliyyatlar" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Sorğu" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Selahiyyetler" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "İstifadeçi" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binary" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Deyişenler" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 #, fuzzy msgid "Charsets" msgstr "Charset" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motorlar" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Xeta" @@ -3077,71 +3074,71 @@ msgstr "Cedvel yoxdur" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, fuzzy, php-format msgid "%s is available on this MySQL server." msgstr "%s motoru bu serverde söndürülmüşdür." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s motoru bu serverde söndürülmüşdür." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL server %s depolama motorunu desteklememektedir." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Search in database" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Search in database" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3149,23 +3146,23 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funksiya" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "Emeliyyatlar" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Deyer" @@ -3175,7 +3172,7 @@ msgstr "Deyer" msgid "Table Search" msgstr "Axtarış" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3310,14 +3307,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3574,8 +3571,8 @@ msgstr "%s - e Xoş Gelmişsiniz!" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3683,12 +3680,12 @@ msgstr "Cedveller" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Me'lumat" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Aşma deyeri" @@ -3803,18 +3800,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL sorğusu" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3906,7 +3903,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3917,8 +3914,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web-server upload direktoriyası" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" @@ -4115,7 +4112,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4395,7 +4392,7 @@ msgid "Character set of the file" msgstr "Faylın Charset-i:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4720,7 +4717,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5990,7 +5987,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL sorğusu" @@ -6303,21 +6300,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6375,8 +6372,8 @@ msgstr "Yeni Sehife qur" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Adı" @@ -6497,8 +6494,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:285 @@ -6506,7 +6503,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Faylın Charset-i:" @@ -6987,8 +6984,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7064,7 +7061,7 @@ msgstr "Gönderildi" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7138,7 +7135,7 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7347,8 +7344,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 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)." @@ -7513,78 +7510,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binary" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "" " Uzun olduğuna göre,
    bu sahedeki me'lumatlar deyişdirilmeye biler " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binary - deyişiklik etme" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "web-server upload direktoriyası" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Yeni setir olaraq elave et" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7612,7 +7609,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Submit" @@ -7632,7 +7629,7 @@ msgstr "Yeni sahe elave et" msgid "Do you really want to execute the following query?" msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Deyişiklik Yoxdur" @@ -7891,7 +7888,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Please see Documentation on how to update your Column_comments Table" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Bookmark-lanmış SQL sorğusu" @@ -7938,6 +7935,10 @@ msgstr "" msgid "no description" msgstr "Haqqında me'lumat (description) mövcud deyildir" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Heç Birini Seçme" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7973,8 +7974,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Deyişen" @@ -8000,7 +8001,7 @@ msgstr "Her hansı istifadeçi" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -8031,10 +8032,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8045,7 +8046,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8061,7 +8062,7 @@ msgstr "%s cedveli leğv edildi" msgid "Event %1$s has been created." msgstr "%s cedveli leğv edildi" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8071,16 +8072,16 @@ msgstr "" msgid "Edit event" msgstr "Gönderildi" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesler" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8095,7 +8096,7 @@ msgstr "Eksport şekli" msgid "Event type" msgstr "Eksport şekli" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8128,13 +8129,13 @@ msgstr "Son" msgid "On completion preserve" msgstr "Tam girişli" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8159,7 +8160,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8180,7 +8181,7 @@ msgstr "" msgid "Returns" msgstr "Cedvel başlığı" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8188,138 +8189,138 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "%s cedveli leğv edildi" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "%s cedveli leğv edildi" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Sütun adları" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Quruluş" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Uzunluq/Deyerler*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Yeni sahe elave et" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy msgid "Remove last parameter" msgstr "Cedveli yeniden adlandır" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Uzunluq/Deyerler*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy msgid "Return options" msgstr "Cedvel başlığı" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Sorğu tipi" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8637,7 +8638,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8672,52 +8673,52 @@ msgstr "Search in database" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Bu sorğunu burada yene göster" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Sadece göster" @@ -8814,7 +8815,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "İndeks" @@ -8869,12 +8870,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Birinci Dereceli" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Tam metn (Fulltext)" @@ -8888,12 +8889,12 @@ msgstr "" msgid "after %s" msgstr "Sonra: %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Yeni sahe elave et" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8944,7 +8945,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Displays a link to this image (direct blob download, i.e.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9140,8 +9141,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "İstifadeçi" @@ -9265,17 +9266,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Cedvel sırasına buna göre yeniden qur" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9299,7 +9300,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9364,47 +9365,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Relation view" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksport" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "in query" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Cedveli yeniden adlandır" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "İstifadeçi adı" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Qur" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy msgid "Active options" msgstr "Cedvel başlığı" @@ -9582,13 +9583,13 @@ msgstr "" msgid "Files" msgstr "Sahe sayı" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" @@ -9604,7 +9605,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 #, fuzzy msgid "Information" msgstr "Sisteme Giriş Me'lumatı" @@ -9634,11 +9635,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Statistikaları Aktivleşdir" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9891,7 +9892,7 @@ msgid "None" msgstr "Heç biri" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Cedvelexas selahiyyetler" @@ -9908,7 +9909,7 @@ msgstr "Administrasiya" msgid "Global privileges" msgstr "Qlobal selahiyyetler" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Me'lumat Bazasına Mexsus Selahiyyetler" @@ -9928,7 +9929,7 @@ msgstr "Sisteme Giriş Me'lumatı" msgid "Do not change the password" msgstr "Parolu deyişdirme" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9979,7 +9980,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Selahiyyetleri Deyişdir" @@ -9994,7 +9995,7 @@ msgid "Export all" msgstr "Eksport" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Her hansı" @@ -10016,79 +10017,79 @@ msgstr "Selahiyyetler" msgid "Users overview" msgstr "User overview" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "İcaze ver" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, fuzzy, php-format 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 " "içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " "halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Sütunaxas Selahiyyetler" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... köhnesini saxla." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... istifadeçi cedvellerinden köhnesini sil." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10096,41 +10097,41 @@ msgstr "" " ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri " "yeniden yükle." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "qlobal" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "bazayaxas" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "xüsusi işare" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy msgid "User has been added." msgstr "%s sahesi leğv edildi" @@ -10414,49 +10415,49 @@ msgstr "Cedvelleri göster" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "Cedvelleri göster" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Sorğu tipi" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Funksiya" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10464,117 +10465,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Variantlar" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Alındı" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Gönderildi" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Uğursuz Cehdler" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Dayandırılmış Elaqeler" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "Nömre" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Komanda Tipi" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10582,78 +10583,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10661,7 +10662,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10669,42 +10670,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10712,33 +10713,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10747,243 +10748,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Faylın Charset-i:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10991,99 +10992,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11091,18 +11092,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11110,69 +11111,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Sorğu tipi" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şen" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Yeni sahe elave et" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Qurucu" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11181,7 +11182,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11189,18 +11190,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11208,11 +11209,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11220,89 +11221,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy msgid "Preset chart" msgstr "Cedveli yeniden adlandır" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Select Tables" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Yeni İstifadeçi elave Et" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL sorğusu" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Sıra Statistikası" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Hamısını Seç" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Sorğu tipi" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11310,7 +11311,7 @@ msgid_plural "%d seconds" msgstr[0] "saniyede" msgstr[1] "saniyede" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12084,35 +12085,35 @@ msgstr "" msgid "Showing tables" msgstr "Cedvelleri göster" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Yer istifadesi" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Sıra Statistikası" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Sıra uzunluğu" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Sıra boyu" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12136,7 +12137,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12195,54 +12196,54 @@ msgstr "%s üzerine indeks elave edildi" msgid "Show more actions" msgstr "PHPInfo() me'lumatını göster" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy msgid "Move columns" msgstr "Yeni sahe elave et" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Çap görüntüsü" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Alternativ cedvel strukturu" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy msgid "Add column" msgstr "Yeni sahe elave et" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Cedvelin sonuna" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Cedvelin başına" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Sonra: %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s sütunda indeks yarat" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12757,8 +12758,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12886,8 +12887,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/be.po b/po/be.po index a9f561380a..e391086a8c 100644 --- a/po/be.po +++ b/po/be.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: belarusian_cyrillic \n" -"Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"Language: be\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: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -39,53 +39,54 @@ msgstr "" "акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне " "міжваконных ўзаемадзеяньняў" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Пошук" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Панеслася" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Імя ключа" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Апісаньне" @@ -116,13 +117,13 @@ msgstr "Камэнтар да базы дадзеных: " msgid "Table comments" msgstr "Камэнтар да табліцы" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Камэнтар да табліцы" msgid "Column" msgstr "Назвы калёнак" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Тып" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Зьвязаная з" msgid "Comments" msgstr "Камэнтары" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Камэнтары" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Не" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Не" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Праглядзець дамп (схему) базы дадзеных" msgid "No tables found in database." msgstr "У базе дадзеных табліц ня выяўлена." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Выбраць усё" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Зьняць усе адзнакі" @@ -327,12 +328,12 @@ msgstr "Дадаць абмежаваньні" msgid "Switch to copied database" msgstr "Перайсьці да скапіяванай базы дадзеных" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Супастаўленьне" @@ -360,17 +361,17 @@ msgstr "Рэляцыйная схема" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Табліца" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Радкі" @@ -385,21 +386,21 @@ msgstr "выкарыстоўваецца" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Створаная" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Апошняе абнаўленьне" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Апошняя праверка" @@ -464,7 +465,7 @@ msgid "Del" msgstr "Выдаліць" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Або" @@ -509,60 +510,28 @@ msgstr "Выканаць запыт" msgid "Access denied" msgstr "У доступе адмоўлена" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "прынамсі адно з словаў" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "усе словы" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "дакладную фразу" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "рэгулярны выраз" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Вынікі пошуку \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s супадзеньняў у табліцы %s" -msgstr[1] "%s супадзеньняў у табліцы %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Прагляд" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Дамп дадзеных табліцы" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Выдаліць" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -570,31 +539,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Агулам: %s супадзеньняў" msgstr[1] "Агулам: %s супадзеньняў" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s супадзеньняў у табліцы %s" +msgstr[1] "%s супадзеньняў у табліцы %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Прагляд" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Дамп дадзеных табліцы" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Выдаліць" + +#: db_search.php:362 msgid "Search in database" msgstr "Пошук у базе дадзеных" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Знайсьці:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Словы, падзеленыя прагалам (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "У табліцы(ах):" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -637,18 +638,18 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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." +"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" +"sдакумэнтацыі%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Выгляд" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -658,100 +659,96 @@ msgstr "Рэплікацыя" msgid "Sum" msgstr "Усяго" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s зьяўляецца машынай захаваньня дадзеных па змоўчаньні на гэтым MySQL-" "сэрвэры." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "З адзначанымі:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Адзначыць усё" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Зьняць усе адзнакі" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспарт" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Ачысьціць" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Выдаліць" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Праверыць табліцу" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Аптымізаваць табліцу" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Рамантаваць табліцу" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Аналізаваць табліцу" -#: db_structure.php:717 +#: db_structure.php:712 #, fuzzy msgid "Add prefix to table" msgstr "Базы дадзеных адсутнічаюць" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Слоўнік дадзеных" @@ -765,9 +762,9 @@ msgstr "Праверыць табліцу" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "База дадзеных" @@ -786,17 +783,17 @@ msgstr "Стварыць" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Стан" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Дзеяньне" @@ -831,7 +828,7 @@ msgstr "Толькі структуру" msgid "Untracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Праверыць табліцу" @@ -983,8 +980,8 @@ msgstr "" #: import.php:86 #, 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 для высьвятленьня спосабаў абыйсьці гэтае " @@ -1010,8 +1007,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца " -"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " +"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%" +"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." #: import.php:390 @@ -1062,13 +1059,13 @@ msgstr "" "вы не павялічыце ліміты выкананьня php-скрыптоў." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запыт быў пасьпяхова выкананы" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" @@ -1166,8 +1163,8 @@ msgstr "Пусты пароль!" msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1191,7 +1188,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1221,13 +1218,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Агулам" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1259,7 +1256,7 @@ msgstr "Выбар сэрвэра" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Працэсы" @@ -1330,13 +1327,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "МіБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "КiБ" @@ -1398,7 +1395,7 @@ msgstr "" msgid "Bytes received" msgstr "Атрымана" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Падлучэньні" @@ -1439,11 +1436,11 @@ msgstr "%s табліц(ы)" msgid "Questions" msgstr "Пэрсыдзкая" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1472,8 +1469,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Няма" @@ -1573,7 +1570,7 @@ msgstr "Магчымасьці асноўных сувязяў" msgid "Current settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1663,7 +1660,7 @@ msgstr "Тлумачыць SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Час" @@ -1770,10 +1767,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імрарт" @@ -1832,9 +1829,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Скасаваць" @@ -1865,9 +1862,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1973,7 +1970,7 @@ msgstr "Выдаленьне %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -2015,8 +2012,8 @@ msgstr "SQL-запыт" msgid "No rows selected" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Зьмяніць" @@ -2031,7 +2028,7 @@ msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2604,16 +2601,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "у сэкунду" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "у хвіліну" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "у гадзіну" @@ -2730,8 +2727,8 @@ msgstr "Сартаваць па ключы" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Налады" @@ -2792,7 +2789,7 @@ msgid "The row has been deleted" msgstr "Радок быў выдалены" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Спыніць" @@ -2819,30 +2816,30 @@ msgstr "усяго" msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Сувязь ня знойдзеная" @@ -2917,46 +2914,46 @@ msgstr "Cookies мусяць быць уключанымі пасьля гэта msgid "Javascript must be enabled past this point" msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Індэкс ня вызначаны!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Індэксы" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Унікальнае" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Сьціснутая" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Колькасьць элемэнтаў" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Камэнтар" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Першасны ключ быў выдалены" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Індэкс %s быў выдалены" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2965,9 +2962,9 @@ msgstr "" "Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " "іх, магчыма, можна выдаліць." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Базы дадзеных" @@ -2977,7 +2974,7 @@ msgstr "Базы дадзеных" msgid "Server" msgstr "Сэрвэр" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2990,104 +2987,104 @@ msgstr "Сэрвэр" msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Уставіць" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Апэрацыі" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Трыгеры" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Табліца — пустая!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "База дадзеных — пустая!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Запыт згодна прыкладу" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Прывілеі" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Працэдуры" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Падзеі" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дызайнэр" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Карыстальнік" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Двайковы лог" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Зьменныя" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Кадыроўкі" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Машыны" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Памылка" @@ -3138,75 +3135,75 @@ msgstr "Няма табліц" msgid "There are no recent tables" msgstr "Праверыць табліцу" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Для гэтай машыны захаваньня дадзеных дэтальная інфармацыя не даступная." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s даступная на гэтым MySQL-сэрвэры." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s была адключаная для рэтага MySQL-сэрвэра." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Пошук у базе дадзеных" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Тэма %s ня знойдзеная!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Няправільная база дадзеных" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Некарэктнае імя табліцы" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Памылка перайменаваньня табліцы %1$s у %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Табліца %s была перайменаваная ў %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3214,22 +3211,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Функцыя" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Апэратар" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Значэньне" @@ -3239,7 +3236,7 @@ msgstr "Значэньне" msgid "Table Search" msgstr "Пошук" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3375,14 +3372,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3641,8 +3638,8 @@ msgstr "Запрашаем у %s" #: libraries/auth/config.auth.lib.php:98 #, 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." @@ -3758,12 +3755,12 @@ msgstr "Табліц" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Дадзеныя" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Выкарыстаньне рэсурсаў" @@ -3884,18 +3881,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-запыт" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3988,7 +3985,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3999,8 +3996,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" @@ -4196,7 +4193,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4479,7 +4476,7 @@ msgid "Character set of the file" msgstr "Кадыроўка файла:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Фармат" @@ -4804,7 +4801,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Сэрвэры" @@ -6103,7 +6100,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL-запыт" @@ -6423,7 +6420,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6431,17 +6428,17 @@ msgid "" "configured)." msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сэрвэр не адказвае" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Падрабязьней..." @@ -6502,8 +6499,8 @@ msgstr "Стварыць табліцу" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Назва" @@ -6627,12 +6624,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." 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, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -6643,7 +6640,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Кадыроўка файла:" @@ -7185,8 +7182,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7261,7 +7258,7 @@ msgstr "Падзея" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7338,7 +7335,7 @@ msgstr "Даступныя MIME-тыпы" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Хост" @@ -7547,8 +7544,8 @@ msgstr "Тып экспарту" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." @@ -7720,81 +7717,81 @@ msgstr "Рэжым сумяшчальнасьці SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Схаваць" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Двайковы" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "З-за вялікай даўжыні,
    гэтае поле ня можа быць адрэдагаванае " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Двайковыя дадзеныя — не рэдагуюцца" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "і пасьля" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" @@ -7822,7 +7819,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Адправіць" @@ -7842,7 +7839,7 @@ msgstr "Дадаць новае поле" msgid "Do you really want to execute the following query?" msgstr "Ці сапраўды вы жадаеце " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Няма зьменаў" @@ -8098,7 +8095,7 @@ msgstr "" "За інфармацыяй як абнавіць табліцу column_comments зьвярніцеся, калі ласка, " "да дакумэнтацыі" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Закладзены SQL-запыт" @@ -8145,6 +8142,10 @@ msgstr "" msgid "no description" msgstr "няма апісаньня" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Зьняць усе адзнакі" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -8182,8 +8183,8 @@ msgstr "Паказаць стан залежных сэрвэраў" msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Зьменная" @@ -8208,7 +8209,7 @@ msgstr "Любы карыстальнік" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" @@ -8239,10 +8240,10 @@ msgid "Generate Password" msgstr "Згенэраваць пароль" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8253,7 +8254,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8270,7 +8271,7 @@ msgstr "Табліца %s была выдаленая" msgid "Event %1$s has been created." msgstr "Табліца %1$s створаная." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8280,16 +8281,16 @@ msgstr "" msgid "Edit event" msgstr "Вэб-сэрвэр" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Працэсы" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -8306,7 +8307,7 @@ msgstr "Тып падзеі" msgid "Event type" msgstr "Тып падзеі" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8341,13 +8342,13 @@ msgstr "Апошняя старонка" msgid "On completion preserve" msgstr "Поўная ўстаўка" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8372,7 +8373,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8394,7 +8395,7 @@ msgstr "" msgid "Returns" msgstr "Тып працэдуры" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8402,144 +8403,144 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Табліца %s была выдаленая" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Табліца %1$s створаная." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy msgid "Edit routine" msgstr "Вэб-сэрвэр" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Працэдуры" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Прамыя лініі сувязяў" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Даўжыня/Значэньні*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Дадаць новае поле" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Перайменаваць базу дадзеных у" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Тып працэдуры" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Даўжыня/Значэньні*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опцыі табліцы" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Тып запыту" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8870,7 +8871,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Невядомая мова: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8906,53 +8907,53 @@ msgstr "Пошук у базе дадзеных" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "Каляндар" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замяніць існую закладку з такім жа імем" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Не перазапісвайце гэты запыт у іншых вокнах" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Разьдзяляльнік" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Паказаць гэты запыт зноў" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Толькі прагляд" @@ -9063,7 +9064,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Індэкс" @@ -9118,12 +9119,12 @@ msgid "As defined:" msgstr "Як вызначана:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Першасны" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Поўнатэкстэкставае" @@ -9137,13 +9138,13 @@ msgstr "" msgid "after %s" msgstr "Пасьля %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Дадаць %s новыя палі" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9206,7 +9207,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Паказвае спасылку для загрузкі гэтага малюнку." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9428,8 +9429,8 @@ msgid "Protocol version" msgstr "Вэрсія пратаколу" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Карыстальнік" @@ -9563,17 +9564,17 @@ msgstr "" "На сэрвэры запушчаны Suhosin. Калі ласка, зьвярніцеся да %sдакумэнтацыі%s " "для атрыманьня апісаньня магчымых праблемаў." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Базы дадзеных адсутнічаюць" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "імя табліцы" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9598,7 +9599,7 @@ msgstr "Паказаць/схаваць мэню зьлева" msgid "Save position" msgstr "Захаваць разьмяшчэньне табліц" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Стварыць сувязь" @@ -9663,48 +9664,48 @@ msgstr "Схаваць/паказаць табліцы бяз сувязяў" msgid "Number of tables" msgstr "Колькасьць табліц" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Выдаліць сувязь" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Сувязь выдаленая" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Экспарт" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "па запыту" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Перайменаваць табліцу ў" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Імя карыстальніка" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Стварыць" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9883,13 +9884,13 @@ msgstr "Вылучыце двайковы лог для прагляду" msgid "Files" msgstr "Файлы" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Абразаць паказаныя запыты" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" @@ -9905,7 +9906,7 @@ msgstr "Пазыцыя" msgid "Original position" msgstr "Першапачатковая пазыцыя" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Інфармацыя" @@ -9934,11 +9935,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Уключыць статыстыку" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10197,7 +10198,7 @@ msgid "None" msgstr "Няма" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" @@ -10214,7 +10215,7 @@ msgstr "Адміністраваньне" msgid "Global privileges" msgstr "Глябальныя прывілеі" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" @@ -10234,7 +10235,7 @@ msgstr "Інфармацыя пра ўваход" msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10285,7 +10286,7 @@ msgstr "Выбраныя карыстальнікі былі пасьпяхов msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Рэдагаваць прывілеі" @@ -10300,7 +10301,7 @@ msgid "Export all" msgstr "Экспарт" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Любы" @@ -10322,81 +10323,81 @@ msgstr "Прывілеі" msgid "Users overview" msgstr "Карыстальнікі" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Выдаліць выбраных карыстальнікаў" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 да таго, як вы працягнеце." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Дадаць прывілеі на наступную базу" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх " "літаральнага выкарыстаньня" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... пакінуць старога." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... выдаліць старога з табліцы карыстальнікаў." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10404,42 +10405,42 @@ msgstr "" " ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць " "прывілеі." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "База дадзеных для карыстальніка" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Праверыць прывілеі для базы "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Карыстальнікі з правамі доступу да "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "глябальны" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "шаблён" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10724,51 +10725,51 @@ msgstr "Паказаць адкрытыя табліцы" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Сувязі" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Тып запыту" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Функцыі" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10776,57 +10777,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Выразы" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "Рэплікацыя" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10834,47 +10835,47 @@ msgstr "" "На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " "статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Атрымана" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Адпраўлена" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "максымум адначасовых злучэньняў" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Няўдалых спробаў" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Спынена" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Каманда" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10884,17 +10885,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10906,11 +10907,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10918,7 +10919,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10926,7 +10927,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10935,23 +10936,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10961,7 +10962,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10972,7 +10973,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10980,7 +10981,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10990,7 +10991,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10998,7 +10999,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11010,7 +11011,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11022,37 +11023,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11062,7 +11063,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11075,11 +11076,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11088,7 +11089,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11096,11 +11097,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11108,7 +11109,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11122,55 +11123,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11178,35 +11179,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11214,55 +11215,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11270,7 +11271,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11278,7 +11279,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11288,17 +11289,17 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Фармат імпартаванага файла" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11308,26 +11309,26 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11338,17 +11339,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11356,39 +11357,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11401,7 +11402,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11409,19 +11410,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11429,13 +11430,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11444,7 +11445,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11452,17 +11453,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11470,13 +11471,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11484,14 +11485,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11501,25 +11502,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11531,7 +11532,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11541,11 +11542,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11557,70 +11558,70 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кэш ключоў" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Суб" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Дадаць новае поле" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Абнавіць" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11629,7 +11630,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11637,18 +11638,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11656,11 +11657,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11668,92 +11669,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Перайменаваць базу дадзеных у" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Выберыце табліцу(ы)" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Некарэктнае імя табліцы" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Дадаць новага карыстальніка" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL-запыт" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Статыстыка радку" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Выбраць усё" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Тып запыту" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11761,7 +11762,7 @@ msgid_plural "%d seconds" msgstr[0] "у сэкунду" msgstr[1] "у сэкунду" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12541,35 +12542,35 @@ msgstr "Праверыць цэласнасьць дадзеных:" msgid "Showing tables" msgstr "Паказаць табліцы" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Выкарыстаньне прасторы" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Эфэктыўнасьць" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Статыстыка радку" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "дынамічны" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Даўжыня радка" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Памер радка" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12596,7 +12597,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12655,56 +12656,56 @@ msgstr "Быў дададзены індэкс для %s" msgid "Show more actions" msgstr "Паказаць інфармацыю пра PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Дадаць %s новыя палі" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Вэрсія для друку" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Прагляд залежнасьцяў" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Прапанаваная структура табліцы" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Дадаць %s новыя палі" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "У канцы табліцы" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "У пачатку табліцы" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Пасьля %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Стварыць індэкс на %s калёнках" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "падзеленая на сэкцыі" @@ -13227,8 +13228,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13361,8 +13362,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/be@latin.po b/po/be@latin.po index f4e2bb57d5..8fc0675a1a 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \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" -"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" +"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" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -39,53 +39,54 @@ msgstr "" "akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie " "mižvakonnych ŭzajemadziejańniaŭ" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Pošuk" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Paniesłasia" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Imia kluča" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Apisańnie" @@ -116,13 +117,13 @@ msgstr "Kamentar da bazy dadzienych: " msgid "Table comments" msgstr "Kamentar da tablicy" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Kamentar da tablicy" msgid "Column" msgstr "Nazvy kalonak" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Źviazanaja z" msgid "Comments" msgstr "Kamentary" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Kamentary" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nie" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Nie" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Prahladzieć damp (schiemu) bazy dadzienych" msgid "No tables found in database." msgstr "U bazie dadzienych tablic nia vyjaŭlena." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Vybrać usio" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Źniać usie adznaki" @@ -328,12 +329,12 @@ msgstr "Dadać abmiežavańni" msgid "Switch to copied database" msgstr "Pierajści da skapijavanaj bazy dadzienych" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Supastaŭleńnie" @@ -361,17 +362,17 @@ msgstr "Relacyjnaja schiema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tablica" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Radki" @@ -386,21 +387,21 @@ msgstr "vykarystoŭvajecca" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Stvoranaja" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Apošniaja pravierka" @@ -466,7 +467,7 @@ msgid "Del" msgstr "Vydalić" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Abo" @@ -511,61 +512,28 @@ msgstr "Vykanać zapyt" msgid "Access denied" msgstr "U dostupie admoŭlena" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "prynamsi adno z słovaŭ" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "usie słovy" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "dakładnuju frazu" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "rehularny vyraz" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Vyniki pošuku \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s supadzieńniaŭ u tablicy %s" -msgstr[1] "%s supadzieńniaŭ u tablicy %s" -msgstr[2] "%s supadzieńniaŭ u tablicy %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Prahlad" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Damp dadzienych tablicy" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Vydalić" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -574,31 +542,64 @@ msgstr[0] "Ahułam: %s supadzieńniaŭ" msgstr[1] "Ahułam: %s supadzieńniaŭ" msgstr[2] "Ahułam: %s supadzieńniaŭ" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s supadzieńniaŭ u tablicy %s" +msgstr[1] "%s supadzieńniaŭ u tablicy %s" +msgstr[2] "%s supadzieńniaŭ u tablicy %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Prahlad" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Damp dadzienych tablicy" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Vydalić" + +#: db_search.php:362 msgid "Search in database" msgstr "Pošuk u bazie dadzienych" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Słova(y) abo značeńnie(i) dla pošuku (maska: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Znajści:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Słovy, padzielenyja prahałam (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "U tablicy(ach):" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -641,18 +642,18 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " -"%sdakumentacyi%s." +"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" +"sdakumentacyi%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Vyhlad" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -662,99 +663,95 @@ msgstr "Replikacyja" msgid "Sum" msgstr "Usiaho" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s źjaŭlajecca mašynaj zachavańnia dadzienych pa zmoŭčańni na hetym MySQL-" "servery." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Z adznačanymi:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Adznačyć usio" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Źniać usie adznaki" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspart" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Ačyścić" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Vydalić" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Pravieryć tablicu" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Aptymizavać tablicu" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Ramantavać tablicu" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizavać tablicu" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Słoŭnik dadzienych" @@ -767,9 +764,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza dadzienych" @@ -786,17 +783,17 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Stan" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Dziejańnie" @@ -828,7 +825,7 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "" @@ -979,8 +976,8 @@ msgstr "" #: import.php:86 #, 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 "" "Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " @@ -1006,8 +1003,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca " -"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " +"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%" +"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." #: import.php:390 @@ -1058,13 +1055,13 @@ msgstr "" "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazad" @@ -1162,8 +1159,8 @@ msgstr "Pusty parol!" msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1187,7 +1184,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1218,13 +1215,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Ahułam" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1256,7 +1253,7 @@ msgstr "Vybar servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Pracesy" @@ -1328,13 +1325,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1396,7 +1393,7 @@ msgstr "" msgid "Bytes received" msgstr "Atrymana" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Padłučeńni" @@ -1438,11 +1435,11 @@ msgstr "%s tablic(y)" msgid "Questions" msgstr "Suviazi" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1471,8 +1468,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Nijakaja" @@ -1572,7 +1569,7 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ" msgid "Current settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1664,7 +1661,7 @@ msgstr "Tłumačyć SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Čas" @@ -1774,10 +1771,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imrart" @@ -1837,9 +1834,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Skasavać" @@ -1869,9 +1866,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1979,7 +1976,7 @@ msgstr "Vydaleńnie %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -2024,8 +2021,8 @@ msgstr "U vyhladzie SQL-zapytu" msgid "No rows selected" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Źmianić" @@ -2040,7 +2037,7 @@ msgid "%d is not valid row number." msgstr "%d nie źjaŭlajecca karektnym numaram radka." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2615,16 +2612,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "u sekundu" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "u chvilinu" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "u hadzinu" @@ -2738,8 +2735,8 @@ msgstr "Sartavać pa klučy" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Nałady" @@ -2800,7 +2797,7 @@ msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Spynić" @@ -2827,31 +2824,31 @@ msgstr "usiaho" msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Versija dla druku (z usim tekstam)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Pakazać PDF-schiemu" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Suviaź nia znojdzienaja" @@ -2927,46 +2924,46 @@ msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." msgid "Javascript must be enabled past this point" msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Indeks nia vyznačany!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksy" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikalnaje" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Ścisnutaja" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kolkaść elementaŭ" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kamentar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Pieršasny kluč byŭ vydaleny" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s byŭ vydaleny" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2975,9 +2972,9 @@ msgstr "" "Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź " "ich, mahčyma, možna vydalić." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Bazy dadzienych" @@ -2987,7 +2984,7 @@ msgstr "Bazy dadzienych" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -3000,104 +2997,104 @@ msgstr "Server" msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Ustavić" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Aperacyi" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Tryhiery" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tablica — pustaja!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Baza dadzienych — pustaja!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Zapyt zhodna prykładu" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Pryvilei" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Pracedury" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Padziei" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dyzajner" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Karystalnik" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Dvajkovy łog" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Źmiennyja" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Kadyroŭki" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Mašyny" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Pamyłka" @@ -3148,75 +3145,75 @@ msgstr "Vybierycie tablicu(y)" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s dastupnaja na hetym MySQL-servery." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, 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:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Pakazać stan zaležnych serveraŭ" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nia znojdzienaja!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Niapravilnaja baza dadzienych" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Niekarektnaje imia tablicy" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tablica %s była pierajmienavanaja ŭ %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3224,22 +3221,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkcyja" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Aperatar" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Značeńnie" @@ -3249,7 +3246,7 @@ msgstr "Značeńnie" msgid "Table Search" msgstr "Pošuk" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3385,14 +3382,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3652,8 +3649,8 @@ msgstr "Zaprašajem u %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." @@ -3770,12 +3767,12 @@ msgstr "Tablic" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Dadzienyja" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Vykarystańnie resursaŭ" @@ -3898,18 +3895,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-zapyt" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -4003,7 +4000,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -4014,8 +4011,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ" @@ -4211,7 +4208,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4492,7 +4489,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Farmat" @@ -4810,7 +4807,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servery" @@ -6082,7 +6079,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "in query" msgid "Retain query box" @@ -6406,7 +6403,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6414,17 +6411,17 @@ msgid "" "configured)." msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server nie adkazvaje" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Padrabiaźniej..." @@ -6485,8 +6482,8 @@ msgstr "Stvaryć tablicu" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nazva" @@ -6609,12 +6606,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." 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 "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -6625,7 +6622,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Kadyroŭka fajła:" @@ -7174,8 +7171,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7251,7 +7248,7 @@ msgstr "Padzieja" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7328,7 +7325,7 @@ msgstr "Dastupnyja MIME-typy" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Chost" @@ -7537,8 +7534,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." @@ -7711,80 +7708,80 @@ msgstr "Režym sumiaščalnaści SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Schavać" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Dvajkovy" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Dvajkovyja dadzienyja — nie redagujucca" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Pačać ustaŭku znoŭ z %s-ha radku" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "i paśla" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia " "abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" @@ -7812,7 +7809,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Adpravić" @@ -7832,7 +7829,7 @@ msgstr "Dadać novaje pole" msgid "Do you really want to execute the following query?" msgstr "Ci sapraŭdy vy žadajecie " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Niama źmienaŭ" @@ -8088,7 +8085,7 @@ msgstr "" "Za infarmacyjaj jak abnavić tablicu column_comments źviarniciesia, kali " "łaska, da dakumentacyi" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Zakładzieny SQL-zapyt" @@ -8135,6 +8132,10 @@ msgstr "" msgid "no description" msgstr "niama apisańnia" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Źniać usie adznaki" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -8169,8 +8170,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Źmiennaja" @@ -8195,7 +8196,7 @@ msgstr "Luby karystalnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" @@ -8226,10 +8227,10 @@ msgid "Generate Password" msgstr "Zgieneravać parol" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8240,7 +8241,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8257,7 +8258,7 @@ msgstr "Tablica %s była vydalenaja" msgid "Event %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8268,16 +8269,16 @@ msgstr "" msgid "Edit event" msgstr "Padzieja" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Pracesy" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -8294,7 +8295,7 @@ msgstr "Typ padziei" msgid "Event type" msgstr "Typ padziei" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8328,13 +8329,13 @@ msgstr "Apošniaja staronka" msgid "On completion preserve" msgstr "Poŭnaja ŭstaŭka" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8359,7 +8360,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8381,7 +8382,7 @@ msgstr "" msgid "Returns" msgstr "Typ pracedury" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8389,126 +8390,126 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tablica %s była vydalenaja" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Pramyja linii suviaziaŭ" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Daŭžynia/Značeńni*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Dadać novaje pole" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Pierajmienavać bazu dadzienych u" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Typ pracedury" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Daŭžynia/Značeńni*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcyi tablicy" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Typ zapytu" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8516,19 +8517,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8859,7 +8860,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Nieviadomaja mova: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8892,52 +8893,52 @@ msgstr "" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Vykanać SQL-zapyt(y) na servery %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zamianić isnuju zakładku z takim ža imiem" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Raździalalnik" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Pakazać hety zapyt znoŭ" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Tolki prahlad" @@ -9013,8 +9014,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." +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" +"sdakumentacyi%s." #: libraries/tbl_common.inc.php:53 #, php-format @@ -9049,7 +9050,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -9104,12 +9105,12 @@ msgid "As defined:" msgstr "Jak vyznačana:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Pieršasny" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" @@ -9123,13 +9124,13 @@ msgstr "" msgid "after %s" msgstr "Paśla %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dadać %s novyja pali" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9194,7 +9195,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Pakazvaje spasyłku dla zahruzki hetaha malunku." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9226,8 +9227,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()." @@ -9417,8 +9418,8 @@ msgid "Protocol version" msgstr "Versija pratakołu" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Karystalnik" @@ -9554,17 +9555,17 @@ msgstr "" "Na servery zapuščany Suhosin. Kali łaska, źviarniciesia da %sdakumentacyi%s " "dla atrymańnia apisańnia mahčymych prablemaŭ." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Bazy dadzienych adsutničajuć" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "imia tablicy" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9589,7 +9590,7 @@ msgstr "Pakazać/schavać meniu źleva" msgid "Save position" msgstr "Zachavać raźmiaščeńnie tablic" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Stvaryć suviaź" @@ -9654,49 +9655,49 @@ msgstr "Schavać/pakazać tablicy biaz suviaziaŭ" msgid "Number of tables" msgstr "Kolkaść tablic" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Vydalić suviaź" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Suviaź vydalenaja" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Ekspart" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "pa zapytu" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename table to" msgid "Rename to" msgstr "Pierajmienavać tablicu ŭ" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Imia karystalnika" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Stvaryć" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9874,13 +9875,13 @@ msgstr "Vyłučycie dvajkovy łog dla prahladu" msgid "Files" msgstr "Fajły" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Abrazać pakazanyja zapyty" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" @@ -9896,7 +9897,7 @@ msgstr "Pazycyja" msgid "Original position" msgstr "Pieršapačatkovaja pazycyja" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Infarmacyja" @@ -9926,11 +9927,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Uklučyć statystyku" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10188,7 +10189,7 @@ msgid "None" msgstr "Nijakaja" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" @@ -10205,7 +10206,7 @@ msgstr "Administravańnie" msgid "Global privileges" msgstr "Hlabalnyja pryvilei" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" @@ -10225,7 +10226,7 @@ msgstr "Infarmacyja pra ŭvachod" msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10276,7 +10277,7 @@ msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Redagavać pryvilei" @@ -10291,7 +10292,7 @@ msgid "Export all" msgstr "Ekspart" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Luby" @@ -10313,125 +10314,125 @@ msgstr "Pryvilei" msgid "Users overview" msgstr "Karystalniki" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Vydalić vybranych karystalnikaŭ" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" "Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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ŭ, " "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Dadać pryvilei na nastupnuju bazu" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Symbali padstanoŭki % i _ musiać być ekranavanymi symbalem \\ dla ich " "litaralnaha vykarystańnia" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... pakinuć staroha." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... vydalić staroha z tablicy karystalnikaŭ." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Baza dadzienych dla karystalnika" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "hlabalny" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "šablon" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10712,51 +10713,51 @@ msgstr "Pakazać adkrytyja tablicy" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Suviazi" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Typ zapytu" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funkcyi" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10764,56 +10765,56 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Vyrazy" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10821,47 +10822,47 @@ msgstr "" "Na zahružanym servery bajtavyja ličylniki mohuć pieraskokvać koła, tamu " "statystyka, jakuju pakazvaje MySQL-server, moža być niapravilnaj." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Atrymana" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Adpraŭlena" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Niaŭdałych sprobaŭ" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Spyniena" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Kamanda" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10871,17 +10872,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Kolkaść tranzakcyjaŭ, jakija vykarystoŭvali časovy dvajkovy keš zapytaŭ." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10893,11 +10894,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10905,7 +10906,7 @@ msgstr "" "Kolkaść časovych tablic, raźmieščanych u pamiaci, jakija byli aŭtamatyčna " "stvoranyja serveram padčas vykanańnia vyrazaŭ." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10913,7 +10914,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10922,23 +10923,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10948,7 +10949,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10959,7 +10960,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10968,7 +10969,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10978,7 +10979,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10986,7 +10987,7 @@ msgstr "" "Kolkaść zapytaŭ čytańnia papiaredni radok u klučavym paradku. Hety metad " "čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10999,7 +11000,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11011,37 +11012,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Kolkaść staronak bufernaha pułu, na jakija byŭ atrymany zapyt na skid." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11051,7 +11052,7 @@ msgstr "" "staronki, jakija ŭ biahučy momant čytajucca ci zapisvajucca abo jakija nia " "mohuć być skinutyja ci vydalenyja z-za peŭnaj pryčyny." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11064,11 +11065,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11077,7 +11078,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11085,11 +11086,11 @@ msgstr "" "Kolkaść paśladoŭnych papiarednich čytańniaŭ, zroblenych InnoDB. Heta " "adbyvajecca, kali InnoDB vykonvaje paśladoŭny poŭny prahlad tablicy." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11097,7 +11098,7 @@ msgstr "" "Kolkaść lagičnych čytańniaŭ, jakija InnoDB nie zmahła adnavić z bufernaha " "pułu, a tamu zrabiła adnastaronkavaje čytańnie." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11111,55 +11112,55 @@ msgstr "" "kamputar padličvaje kolkaść takich čakańniaŭ. Kali pamier buferu byŭ " "vyznačany pravilna, hetaje značeńnie musić być maleńkim." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11167,35 +11168,35 @@ msgstr "" "Kolkaść vypadkaŭ čakańnia z-za taho, što bufer łogu byŭ zanadta mały, i tamu " "daviałosia čakać, pakul jon nie ačyścicca." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11204,54 +11205,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" "Kolkaść blakavańniaŭ radkoŭ, čakańnie jakich adbyvajecca na biahučy momant." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Siaredni čas atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ahulny čas čakańnia atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Maksymalny čas atramańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Kolkaść razoŭ, kali davodziłasia čakać blakavańnie radku." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11259,7 +11260,7 @@ msgstr "" "Kolkaść blokaŭ u kešy klučoŭ, jakija byli źmienienyja, ale jašče nie byli " "skinutyja na dysk. Vykarystoŭvajecca jak značeńnie Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11267,7 +11268,7 @@ msgstr "" "Kolkaść niavykarystanych blokaŭ u kešy klučoŭ. Hetaje značeńnie možna " "vykarystoŭvać dla vyznačeńnia stupieni vykarystańnia kešu klučoŭ." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11277,17 +11278,17 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Farmat impartavanaha fajła" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Kolkaść zapytaŭ na čytańnie bloku klučoŭ z kešu." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11297,26 +11298,26 @@ msgstr "" "vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść " "promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Kolkaść zapytaŭ na zapis bloku klučoŭ u keš." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Kolkaść fizyčnych zapisaŭ bloku klučoŭ na dysk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11327,17 +11328,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11345,39 +11346,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Kolkaść adkrytych patokaŭ (vykarystoŭvajucca pieravažna dla łahavańnia)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11390,7 +11391,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11398,19 +11399,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11418,13 +11419,13 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija nie vykarystoŭviajuć indeksy. Kali hetaje " "značeńnie nia roŭnaje 0, varta pravieryć indeksy ŭ tablicach." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali pošuk pa mascy ŭ metavaj " "tablicy." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11433,7 +11434,7 @@ msgstr "" "kluča paśla kožnaha radka. (Kali hetaje značeńnie nia roŭnaje 0, varta " "pravieryć indeksy ŭ tablicach.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11441,17 +11442,17 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali spałučeńni paloŭ u pieršaj " "tablicy. (Zvyčajna nie krytyčna, navat kali hetaje značeńnie vialikaje.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Kolkaść časovych tablic, jakija ŭ biahučy momant adkrytyja zaležnym SQL-" "patokam." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11459,13 +11460,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Hetaje značeńnie roŭnaje \"ON\", kali server źjaŭlajecca zaležnym i " "padłučanym da servera, jaki jaho kantraluje." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11473,14 +11474,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Kolkaść zapytaŭ, na vykanantnie jakich spatrebiłasia bolš, čym " "long_query_time sekundaŭ." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11490,25 +11491,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" "Kolkaść sartavańniaŭ, jakija byli zroblenyja z vykarystańniem niekalkich " "słupkoŭ." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Kolkaść sartavańniaŭ, jakija byli zroblenyja padčas prahladu tablicy." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11520,7 +11521,7 @@ msgstr "" "prablemy z pradukcyjnaściu, varta spačatku aptymizavać zapyty, a paśla abo " "padzialić tablicu abo tablicy, abo vykarystoŭvać replikacyju." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11530,11 +11531,11 @@ msgstr "" "jak Threads_created/Connections. Kali hetaje značeńnie pafarbavanaje ŭ " "čyrvony koler, varta pavialičyć značeńnie thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11546,68 +11547,68 @@ msgstr "" "thread_cache_size. (Zvyčajna, heta nie daje jakoha-niebudź zaŭvažnaha " "pavieličeńnia pradukcyjnaści, kali prysutničaje dobraja realizacyja patokaŭ.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Keš klučoŭ" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Dadać novaje pole" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Abnavić" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dadać/vydalić kalonku kryteru" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11616,7 +11617,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11624,18 +11625,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11643,11 +11644,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11655,93 +11656,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Pierajmienavać bazu dadzienych u" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Vybierycie tablicu(y)" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Niekarektnaje imia tablicy" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Dadać novaha karystalnika" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Statystyka radku" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Vybrać usio" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Typ zapytu" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11750,7 +11751,7 @@ msgstr[0] "u sekundu" msgstr[1] "u sekundu" msgstr[2] "u sekundu" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12522,35 +12523,35 @@ msgstr "Pravieryć cełasnaść dadzienych:" msgid "Showing tables" msgstr "Pakazać tablicy" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Vykarystańnie prastory" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektyŭnaść" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statystyka radku" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamičny" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Daŭžynia radka" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Pamier radka" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12577,7 +12578,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12636,56 +12637,56 @@ msgstr "Byŭ dadadzieny indeks dla %s" msgid "Show more actions" msgstr "Pakazać infarmacyju pra PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Dadać %s novyja pali" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Versija dla druku" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Prahlad zaležnaściaŭ" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Prapanavanaja struktura tablicy" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dadać %s novyja pali" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "U kancy tablicy" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "U pačatku tablicy" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Paśla %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Stvaryć indeks na %s kalonkach" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "padzielenaja na sekcyi" @@ -13213,8 +13214,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13349,8 +13350,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/bg.po b/po/bg.po index e811450bd8..5481ac5efa 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-01 22:03+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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от " "един прозорец в друг от съображения за сигурност." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Търсене" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Изпълнение" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Име на ключ" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Описание" @@ -117,13 +118,13 @@ msgstr "Коментар към БД: " msgid "Table comments" msgstr "Коментари към таблицата" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Коментари към таблицата" msgid "Column" msgstr "Kолона" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Свързана към" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Коментари" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Не" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Не" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Преглед на схема (дъмп) на БД" msgid "No tables found in database." msgstr "В БД няма таблици." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Маркиране всички" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Размаркиране всички" @@ -321,12 +322,12 @@ msgstr "Добавяне ограничения" msgid "Switch to copied database" msgstr "Показване на копираната БД" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Колация" @@ -349,17 +350,17 @@ msgstr "Редакция или експорт на релационна схе #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Таблица" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Редове" @@ -374,21 +375,21 @@ msgstr "ползва се в момента" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Дата на създаване" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Последно обновление" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Последна проверка" @@ -451,7 +452,7 @@ msgid "Del" msgstr "Изтрий" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Или" @@ -492,85 +493,87 @@ msgstr "Изпълни заявката" msgid "Access denied" msgstr "Отказан достъп" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "поне една от думите" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "всички думи" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "точната фраза" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "като регулярен израз" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати от търсенето на \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s съвпадение в таблица %2$s" -msgstr[1] "%1$s съвпадения в таблица %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Прелистване" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Изтриване на съвпаденията от таблицата %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Изтриване" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Общо: %s съвпадение" msgstr[1] "Общо: %s съвпадения" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s съвпадение в таблица %2$s" +msgstr[1] "%1$s съвпадения в таблица %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Прелистване" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Изтриване на съвпаденията от таблицата %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Изтриване" + +#: db_search.php:362 msgid "Search in database" msgstr "Търсене в БД" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Намери:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Думите трябва да се разделят с интервал (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "В таблици:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "В колона:" @@ -609,8 +612,8 @@ msgstr "Проследяването е неактивно." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -618,7 +621,7 @@ msgstr "Този изглед има поне толкова реда. Погл msgid "View" msgstr "Изглед" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -628,93 +631,89 @@ msgstr "Репликация" msgid "Sum" msgstr "Сума" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Когато има отметка:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Маркиране всички" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Отмаркиране всички" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Изчистване" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Изтриване" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Проверка на таблицата" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Оптимизация на таблицата" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Поправяне на таблицата" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Анализиране на таблицата" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Добавяне представка към таблица" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Замяна на представката на таблица" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Копиране на таблицата с представка" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Речник на данните" @@ -727,9 +726,9 @@ msgstr "Следени таблици" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "БД" @@ -746,17 +745,17 @@ msgstr "Създаден" msgid "Updated" msgstr "Съвременен" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Състояние" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Действие" @@ -788,7 +787,7 @@ msgstr "Моментна снимка на структурата" msgid "Untracked tables" msgstr "Непроследявани таблици" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Следене на таблица" @@ -923,8 +922,8 @@ msgstr "" #: import.php:86 #, 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 за да намерите начин да избегнете това ограничение." @@ -1003,13 +1002,13 @@ msgstr "" "импорт, освен ако не бъдат увеличени времевите ограничения в PHP." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL заявката беше изпълнена успешно" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" @@ -1095,8 +1094,8 @@ msgstr "Паролата е празна!" msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Нов потребител" @@ -1114,7 +1113,7 @@ msgid "Close" msgstr "Затваряне" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1141,13 +1140,13 @@ msgstr "Статична информация" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Общо" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Друго" @@ -1177,7 +1176,7 @@ msgstr "Сървър трафик (в KiB)" msgid "Connections since last refresh" msgstr "Връзки след последното опресняване" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Процеси" @@ -1241,13 +1240,13 @@ msgstr "Системен swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "КБ" @@ -1299,7 +1298,7 @@ msgstr "Байта изпратени" msgid "Bytes received" msgstr "Байта получени" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Връзки" @@ -1338,11 +1337,11 @@ msgstr "%d таблица(и)" msgid "Questions" msgstr "Запитвания" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Настройки" @@ -1365,8 +1364,8 @@ msgstr "Моля добавете поне една променлива към #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Няма" @@ -1466,7 +1465,7 @@ msgstr "Промяна настройки" msgid "Current settings" msgstr "Текущи настройки" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Заглавие на диаграмата" @@ -1550,7 +1549,7 @@ msgstr "Обяснение на изхода" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Време" @@ -1643,10 +1642,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1694,9 +1693,9 @@ msgstr "Използвана променлива / формула" msgid "Test" msgstr "Тест" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Отмяна" @@ -1724,9 +1723,9 @@ msgstr "Изтриване на колона" msgid "Adding Primary Key" msgstr "Добавяне на първичен ключ" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1802,7 +1801,7 @@ msgstr "Изтриване" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Дефиницията на съхранена процедура трябва да съдържа израз RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" @@ -1841,8 +1840,8 @@ msgstr "Показване формата за заявки" msgid "No rows selected" msgstr "Няма върнати редове" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Промяна" @@ -1857,7 +1856,7 @@ msgid "%d is not valid row number." msgstr "%d не е валиден номер на ред." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2365,16 +2364,16 @@ msgstr "Неочаквани знаци на ред %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Неочакван знак на ред %1$s. Очакван табулатор, но намерен \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "на секунда" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "на минута" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "на час" @@ -2475,8 +2474,8 @@ msgstr "Сортиране по ключ" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Настройки" @@ -2529,7 +2528,7 @@ msgid "The row has been deleted" msgstr "Редът беше изтрит" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Спиране" @@ -2558,27 +2557,27 @@ msgstr "общо" msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Операции с резултата от заявката" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Преглед за печат (с пълните текстове)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Диаграма" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Визуализиране на GIS данни" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Създаване на изглед" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Връзките не са намерени" @@ -2650,46 +2649,46 @@ msgstr "Оттук нататък са необходими бисквитки." msgid "Javascript must be enabled past this point" msgstr "Оттук нататък е необходим javascript" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Не е избран индекс!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индекси" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Уникално" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Опаковани" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Коментар" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Главният ключ беше изтрит" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s беше изтрит" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2698,9 +2697,9 @@ msgstr "" "Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да " "бъде премахнат." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "БД" @@ -2710,7 +2709,7 @@ msgstr "БД" msgid "Server" msgstr "Сървър" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2723,102 +2722,102 @@ msgstr "Сървър" msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Вмъкване" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операции" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Проследяване" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Тригери" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Таблицата изглежда празна!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "БД изглежда празна!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Заявка по пример" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Права" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Процедури" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Събития" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Строител" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Потребители" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Синхронизиране" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Двоичен дневник" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Знакови набори" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Добавки" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Хранилища" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Грешка" @@ -2860,70 +2859,70 @@ msgstr "Отваряни таблици" msgid "There are no recent tables" msgstr "Няма наскоро отваряни таблици" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Няма детайлна информация за състоянието на това хранилище на данни." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s е разрешен на този MySQL сървър." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s е забранено за този MySQL сървър." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Този MySQL сървър не поддържа хранилището на данни %s." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "неизвестно състояние на таблица: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "БД-източник `%s` не е намерена!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Целевата БД `%s` не е намерена!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Невалидна БД" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Невалидно име на таблица" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Грешка при преименуване на таблица %1$s в %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s беше преименувана на %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Таблицата с визуалните настройки не може да бъде запазена" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2931,22 +2930,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Функция" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Оператор" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Стойност" @@ -2954,7 +2953,7 @@ msgstr "Стойност" msgid "Table Search" msgstr "Търсене в таблица" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Редакция/Вмъкване" @@ -3082,14 +3081,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3345,8 +3344,8 @@ msgstr "Добре дошли в %s" #: libraries/auth/config.auth.lib.php:98 #, 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, за да го създадете." @@ -3459,12 +3458,12 @@ msgstr "Таблици" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Данни" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Загубено място" @@ -3575,18 +3574,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL заявка" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3674,7 +3673,7 @@ msgstr "Функционалността %s се влияе от известе msgid "Click to toggle" msgstr "Щракване за превключване" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" @@ -3684,8 +3683,8 @@ msgstr "Разглеждане на компютъра:" msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Папката, която сте указали за качване е недостъпна" @@ -3869,7 +3868,7 @@ msgstr "Стойност по подразбиране" msgid "Allow users to customize this value" msgstr "Позволение на потребители да променят стойността" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4162,7 +4161,7 @@ msgid "Character set of the file" msgstr "Знаков набор на файла" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Формат" @@ -4459,7 +4458,7 @@ msgstr "Управляваща рамка" msgid "Customize appearance of the navigation frame" msgstr "Персонализиране изгледа на рамката за навигация" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Сървъри" @@ -5712,7 +5711,7 @@ msgid "" msgstr "" "Определя дали прозорецът със заявката да остане екрана след изпращането му" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Запазване отворен прозореца за заявки" @@ -6028,7 +6027,7 @@ msgstr "Разширението %s липсва. Проверете конфи msgid "possible deep recursion attack" msgstr "възможна атака чрез дълбока рекурсия" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6036,15 +6035,15 @@ msgstr "" "Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран " "правилно)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Сървърът не отговаря." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Проверете правата на папката, съдържаща БД." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Подробности..." @@ -6099,8 +6098,8 @@ msgstr "Създаване таблица" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Име" @@ -6202,8 +6201,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 "" #: libraries/display_export.lib.php:285 @@ -6211,7 +6210,7 @@ msgid "use this for future exports" msgstr "прилагане и към бъдещи експорти" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Знаков набор на файла:" @@ -6672,8 +6671,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6733,7 +6732,7 @@ msgstr "Действие" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Описание" @@ -6794,7 +6793,7 @@ msgstr "Показване MIME типове" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Хост" @@ -6990,8 +6989,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." @@ -7153,77 +7152,77 @@ msgstr "Режим на съвместимост на SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Скриване" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "двоичен" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Поради дължината си,
    това поле може да е нередактируемо" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Двоично - не се редактира" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "директорията за upload на web сървъра" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "и след това" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Показване заявка за вмъкване" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Обратно към предната страница" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Вмъкване нов ред" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Връщане към тази страница" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Редакция на следващия ред" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7247,7 +7246,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Изпълнение" @@ -7263,7 +7262,7 @@ msgstr "Добавяне на представка" msgid "Do you really want to execute the following query?" msgstr "Наистина ли искате да изпълните следната заявка?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Няма промяна" @@ -7515,7 +7514,7 @@ msgstr "" "Моля консултирайте се с документацията относно обновяването на вашата " "column_comments таблица" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Отбелязана SQL заявка" @@ -7562,6 +7561,10 @@ msgstr "" msgid "no description" msgstr "няма описание" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Отмаркиране всички" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Конфигурация на подчинен" @@ -7596,8 +7599,8 @@ msgstr "Състояние на главен" msgid "Slave status" msgstr "Състояние на подчинен" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Променлива" @@ -7624,7 +7627,7 @@ msgstr "Всеки потребител" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "От текстовото поле" @@ -7655,10 +7658,10 @@ msgid "Generate Password" msgstr "Генериране на парола" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7669,7 +7672,7 @@ msgstr "Следната заявка е неуспешна: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Съжаляваме, но възстановяването на изтритото събитие е неуспешно." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Архивираната заявка е:" @@ -7684,7 +7687,7 @@ msgstr "Събитието %1$s беше променено." msgid "Event %1$s has been created." msgstr "Събитието %1$s беше създадено." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "Една или повече грешки възникнаха при обработка на заявката:" @@ -7693,14 +7696,14 @@ msgstr "Една или повече грешки възникнаха при msgid "Edit event" msgstr "Редакция събитие" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Грешка при обработка на заявката" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Подробности" @@ -7713,7 +7716,7 @@ msgstr "Име на събитие" msgid "Event type" msgstr "Тип на събитието" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Промяна на %s" @@ -7740,13 +7743,13 @@ msgstr "Край" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7771,7 +7774,7 @@ msgstr "Трябва да дадете валиден тип на събитие msgid "You must provide an event definition." msgstr "Трябва да дадете дефиниция на събитието." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Нов" @@ -7791,7 +7794,7 @@ msgstr "Състояние на Диспечера на събитията" msgid "Returns" msgstr "Връща" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7803,89 +7806,89 @@ msgstr "" "съхранени процедури може да пропадне![strong] Моля, използвайте подобреното " "разширение 'mysqli', за да избегнете проблеми." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Невалиден тип процедура: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Съжаляваме, но възстановяването на изтритата процедура е неуспешно." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Процедурата%1$s беше променена." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Процедура %1$s беше създадена." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Редактиране" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Име" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Параметри" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Посока" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Дължина/Стойности" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Нов параметър" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Изтриване на последен параметър" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Тип данни при изход" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Дължина/стойност на данни при изход" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Настройки на данни при изход" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Сигурност" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Достъп до SQL данните" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Трябва да дадете име на процедурата" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Невалидна посока \"%s\" подадена като параметър." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7893,37 +7896,37 @@ msgstr "" "Трябва да дадете дължина/стойност за параметрите на процедурата от тип ENUM, " "SET, VARCHAR и VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Трябва да дадете име и тип за всеки параметър на процедурата." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Трябва да дадете валиден тип на данните при изход на процедурата." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Трябва да дадете дефиниция на процедурата." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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 ред променен от последният израз на съхранената процедура" msgstr[1] "%d реда променени от последният израз на съхранената процедура" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Резултати от изпълнението на процедура %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Изпълнение на процедура" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Параметри на процедурата" @@ -8206,7 +8209,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Непознат език: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Текущ сървър" @@ -8237,50 +8240,50 @@ msgstr "Целева БД" msgid "Click to select" msgstr "Щракване за избор" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Изпълняване на SQL заявка/заявки на сървър %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Изпълнение на SQL заявка/заявки към БД %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Изчистване" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Колони" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Всеки потребител да има достъп до тази белязка" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замяна белязката със същото име" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Не препокривайте тази заявка извън този прозорец" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Разделител" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Показване на заявката отново" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Само показване" @@ -8354,8 +8357,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -"инсталирани необходимите PHP разширения, както е описано в %sдокументацията" -"%s." +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" +"s." #: libraries/tbl_common.inc.php:53 #, php-format @@ -8384,7 +8387,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Индекс" @@ -8436,12 +8439,12 @@ msgid "As defined:" msgstr "Дефиниран като:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Първичен" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Пълнотекстово" @@ -8454,12 +8457,12 @@ msgstr "" msgid "after %s" msgstr "след %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Добавяне %s колона(и)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Трябва да добавите поне една колона." @@ -8512,7 +8515,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Показва връзка за сваляне на това изображение." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8676,8 +8679,8 @@ msgid "Protocol version" msgstr "Версия на протокола" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Потребител" @@ -8796,15 +8799,15 @@ msgstr "" "Сървърът е с кръпка Suhosin. Прочетете %sдокументацията%s за възможни " "проблеми." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Няма БД" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "филтър по таблица" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "филтър по таблица" @@ -8825,7 +8828,7 @@ msgstr "Скриване/Показване на лявото меню" msgid "Save position" msgstr "Запазване на позицията" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Създаване релация" @@ -8885,37 +8888,37 @@ msgstr "Показване/скриване таблици без релации msgid "Number of tables" msgstr "Брой таблици" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Изтриване релация" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Оператор на отношение" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Освен" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "подзаявка" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Преименуване на" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Ново име" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Агрегиране" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Активни опции" @@ -9033,8 +9036,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:305 msgid "Save to browser's storage" @@ -9077,13 +9080,13 @@ msgstr "Изберете двоичен дневник за преглед" msgid "Files" msgstr "Файлове" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Съкращаване на показаните заявки" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Показване на пълните заявки" @@ -9099,7 +9102,7 @@ msgstr "Положение" msgid "Original position" msgstr "Първоначално положение" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Информация" @@ -9127,11 +9130,11 @@ msgstr "Главен сървър" msgid "Slave replication" msgstr "Подчинен сървър" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Разрешаване на статистика" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9384,7 +9387,7 @@ msgid "None" msgstr "Няма" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Специфични за таблицата права" @@ -9401,7 +9404,7 @@ msgstr "Администрация" msgid "Global privileges" msgstr "Глобални права" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Специфични за БД права" @@ -9422,7 +9425,7 @@ msgstr "Информация за логване" msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Няма потребител." @@ -9471,7 +9474,7 @@ msgstr "Избраните потребители бяха изтрити усп msgid "The privileges were reloaded successfully." msgstr "Правата бяха презаредени успешно." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Редакция" @@ -9484,7 +9487,7 @@ msgid "Export all" msgstr "Експорт всички" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Всеки" @@ -9501,79 +9504,79 @@ msgstr "Права на %s" msgid "Users overview" msgstr "Преглед потребители" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Дадени" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Отстраняване избраните потребители" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отмяна на всички права на потребителите и след това изтриване." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Изтриване на БД, които имат имена като тези на потребителите." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 преди да продължите." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Избраният потребител не беше открит в таблицата с права." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Специфични за колоната права" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Добавяне на права към следната БД" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "sdgf" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Добавяне на права към следната таблица" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Промяна информацията за вход / Копиране потребител" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Създаване нов потребител със същите права и ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... запазване на стария." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... изтриване на стария от таблицата с потребители." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... отмяна на всички права от стария и след това изтриване." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9581,41 +9584,41 @@ msgstr "" "... изтриване на стария от таблицата с потребители и след това презареждане " "на правата." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "БД за потребителя" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Създаване на БД със същото име и даване на пълни права" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Даване на всички привилегии на име с маска (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Даване на пълни права над БД "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Потребители с достъп до "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "глобален" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "специфични за БД" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "знак за заместване" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Потребител беше добавен." @@ -9893,43 +9896,43 @@ msgstr "Само тревожни стойности" msgid "Filter by category..." msgstr "Филтър по категория..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Неформатирани стойности" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Сродни връзки:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Пускане анализатор" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Инструкции" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9937,31 +9940,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Запитвания от включването: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Заявление" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "№" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Мрежови трафик от включването: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Този MySQL сървър работи от %1$s. Пуснат е на %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -9969,15 +9972,15 @@ msgstr "" "Този MySQL сървър работи като главен и подчинен в " "репликация." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "Този MySQL сървър работи като главен в репликация." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "Този MySQL сървър работи като подчинен в репликация." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9985,11 +9988,11 @@ msgstr "" "За повече информация относно статусът на репликация на този сървъра, моля " "посетете секция репликация." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Състояние на репликацията" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9997,35 +10000,35 @@ msgstr "" "При натоварен сървър байтовите броячи може да превъртат и статистиката " "докладвана от MySQL да е невярна." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Получени" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Изпратени" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "максимален брой едновременни връзки" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Неуспешни опити" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Прекъснати" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Команда" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10033,27 +10036,27 @@ msgstr "" "Броят връзки, които са прекъснати, защото клиентът е изчезнал без да затвори " "правилно връзките." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Броят неуспешни опити за връзка към MySQL сървъра." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10061,78 +10064,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Броят създадени от mysqld временни файлове." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Броят вмъкнати посредством INSERT DELAYED редове." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10140,7 +10143,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10148,42 +10151,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10191,33 +10194,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10226,195 +10229,195 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Броят на заявки за запис в дневника." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Броят изтрити редове от InnoDB таблици." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Броят вмъкнати редове в InnoDB таблици." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Броят прочетени редове от InnoDB таблици." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Броят обновени редове в InnoDB таблици." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10422,48 +10425,48 @@ msgstr "" "Максималният брой едновременно използвани връзки от като е стартиран " "сървърът." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Броят отворени файлове." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Броят отворени потоци (използва се главно за дневници)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Броят отворени таблици." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Количеството свободна памет за буфер за заявки." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Броят попадения в кеш." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Броят заявки добавени към буфера." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10471,99 +10474,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Броят заявки регистрирани в буфера." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Общият брой блокове в буфера за заявки." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Брой временни таблици отворени от подчинена SQL нишка." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Броят сортирани редове." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10571,18 +10574,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Брой текущо отворени връзки." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10590,61 +10593,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Броят на нишките, които не са спящи." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Включване на Наблюдателя" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Добавяне диаграма" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Скорост на опресняване" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Стойност по подразбиране" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Инструкции на наблюдателя" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10658,7 +10661,7 @@ msgstr "" "general_log. Отбележете обаче, че general_log генерира много данни и " "натоварването на сървъра се увеличава с до 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10666,18 +10669,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Използване наблюдател:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10685,11 +10688,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10697,86 +10700,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Променливи(а) на състоянието" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Избор на серии:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "или въведете променлива:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Прилагане на разделител" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Статистика на дневника" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Анализатор заявки" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d секунда" msgstr[1] "%d секунди" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11501,35 +11504,35 @@ msgstr "Проверка на интегритета на връзките:" msgid "Showing tables" msgstr "Показване таблици" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Използвано място" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Ефективни" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Статистика за редовете" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "статичен" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "динамичен" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Дължина ред" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Размер ред" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11554,7 +11557,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ограничение за външен ключ" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11604,49 +11607,49 @@ msgstr "Беше добавен индекс на %s" msgid "Show more actions" msgstr "Показване повече действия" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Преместване колони" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Изглед за редакция" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Преглед релации" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Анализ на таблицата" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Добавяне колона" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "В края на таблицата" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "В началото на таблицата" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "След %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Създаване на индекс върху  %s колони" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12145,8 +12148,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12268,8 +12271,8 @@ msgstr "" #, fuzzy, php-format #| msgid "%s%% of all connections are aborted. This value should be below 1%%" msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% на всички прекъснати клиенти. Тази стойност трябва да бъде под 1%%" @@ -12624,8 +12627,8 @@ msgstr "" #: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "" -#| "Max_used_connections is at %s%% of max_connections, it should be below " -#| "80%%" +#| "Max_used_connections is at %s%% of max_connections, it should be below 80%" +#| "%" msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" msgstr "" diff --git a/po/bn.po b/po/bn.po index c95aa55a22..13b4956b44 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-03-27 16:56+0200\n" "Last-Translator: Michal Čihař \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: Weblate 0.8\n" @@ -38,53 +38,54 @@ msgstr "" "করেছেন, অথবা আপনার ব্রাউজার এর নিরাপত্তা সেটিংস্ এমন ভাবে কনফিগার করা আছে যে " "দুটি উইন্ডোর এক সাথে হালনাগাদ করাকে বাধা দিবে।" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "খুঁজুন" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "যাও" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "বর্ণনা" @@ -117,13 +118,13 @@ msgstr "ডাটাবেজ মন্তব্যসমূহঃ" msgid "Table comments" msgstr "টেবিলের মন্তব্য সমূহ" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "টেবিলের মন্তব্য সমূহ" msgid "Column" msgstr "কলামের" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "ধরন" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "সংযুক্তি হবে" msgid "Comments" msgstr "মন্তব্যসমূহ" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "মন্তব্যসমূহ" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "না" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "না" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "ডাটাবেজ ওর (schema) ভান্ডারটি দে msgid "No tables found in database." msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "সব সিলেক্ট করুন" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "সবগুলো অনির্বাচিত হোক" @@ -323,12 +324,12 @@ msgstr "constraints সংযুক্ত করুন" msgid "Switch to copied database" msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তিত হবে" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Collation" @@ -351,17 +352,17 @@ msgstr "সম্বন্ধযুক্ত স্কিমা" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "টেবিল" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rows" @@ -376,21 +377,21 @@ msgstr "in use" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Creation" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "সর্বশেষ আপডেট" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Last check" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "অথবা" @@ -494,87 +495,87 @@ msgstr "" msgid "Access denied" msgstr "প্রবেশ নিষেধ" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "সব শব্দ" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s ভিতরের টেবিলটি মানানসই %s" -msgstr[1] "%s ভিতরের টেবিলগুলি মানানসই %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "ব্রাউজ করুন" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s মানানসই টেবিলটি মুছে দেবেন?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "মুছে ফেল" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "মোট: %s মানানসই" msgstr[1] "মোট: %s গুলি মানানসই" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s ভিতরের টেবিলটি মানানসই %s" +msgstr[1] "%s ভিতরের টেবিলগুলি মানানসই %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "ব্রাউজ করুন" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "%s মানানসই টেবিলটি মুছে দেবেন?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "মুছে ফেল" + +#: db_search.php:362 msgid "Search in database" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "শব্দ বা মানের জন্য অনুসন্ধান (ওয়াইল্ডকার্ড: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Find:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "ভিতরে টেবিল (গুলি):" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "ভিতরে টেবিল(গুলি):" @@ -613,8 +614,8 @@ msgstr "ট্র্যাকিং সক্রিয় নয়।" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "এই ভিউ এ অন্তত এই সংখ্যক সারি রয়েছে। %sdocumentation%s পড়ুন." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -622,7 +623,7 @@ msgstr "এই ভিউ এ অন্তত এই সংখ্যক সার msgid "View" msgstr "View" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -632,93 +633,89 @@ msgstr "Replication" msgid "Sum" msgstr "যোগফল" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Uncheck All" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Print view" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "খালি" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "মুছে ফেল" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "টেবিল পরীক্ষা কর" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "টেবিল অপটিমাইজ করুন" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "টেবিল রিপেয়ার করুন" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "টেবিল বিশ্লেষণ কর" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "টেবিলে উপসর্গ যোগ করুন" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "টেবিল উপসর্গ প্রতিস্থাপন" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "উপসর্গ সহ টেবিলটি অনুলিপি করুন" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "ডাটা অভিধান" @@ -731,9 +728,9 @@ msgstr "টেবিলগুলি ট্রাক করা" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "ডাটাবেজ" @@ -750,17 +747,17 @@ msgstr "তৈরী করা হয়েছে" msgid "Updated" msgstr "আপডেটেড" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "অবস্থা" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Action" @@ -792,7 +789,7 @@ msgstr "গঠন স্ন্যাপশট" msgid "Untracked tables" msgstr "আনট্রাক্ড টেবিল" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "টেবিল ট্রাক কর" @@ -927,8 +924,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -994,13 +991,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "পিছনে" @@ -1085,8 +1082,8 @@ msgstr "পাসওয়ার্ড দেওয়া হয়নি" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "ব্যাবহারকারী যোগ করুন" @@ -1104,7 +1101,7 @@ msgid "Close" msgstr "বন্ধ" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1131,13 +1128,13 @@ msgstr "স্থিসি উপাত্ত" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "মোট" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "স্থিতি উপাত্ত" @@ -1167,7 +1164,7 @@ msgstr "সার্ভার ট্রাফিক (in KiB)" msgid "Connections since last refresh" msgstr "গত রিফ্রেস থেকে সংযোগসমূহ" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processes" @@ -1230,13 +1227,13 @@ msgstr "সিস্টেম বিনিময়" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "মেগাবাইট" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "কিলোবাইট" @@ -1288,7 +1285,7 @@ msgstr "পাঠনো বাইটস" msgid "Bytes received" msgstr "গৃহীত বাইটস" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "সংযোগসমূহ" @@ -1327,11 +1324,11 @@ msgstr "%d টেবিল(সমূহ)" msgid "Questions" msgstr "প্রশ্ন" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "সেটিংস" @@ -1354,8 +1351,8 @@ msgstr "অনুগ্রহপূর্বক সিরিজসমূহে #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "কোনটিই নয়" @@ -1455,7 +1452,7 @@ msgstr "General relation features" msgid "Current settings" msgstr "General relation features" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1543,7 +1540,7 @@ msgstr "SQL ব্যাখ্যা কর" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "সময়" @@ -1650,10 +1647,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "ইম্পোর্ট কর" @@ -1709,9 +1706,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1742,9 +1739,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "ঠিক আছে" @@ -1850,7 +1847,7 @@ msgstr "%s মুছে ফেলা হচ্ছে" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/Set এডিটর" @@ -1891,8 +1888,8 @@ msgstr "SQL query" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Change" @@ -1907,7 +1904,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2478,16 +2475,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "per second" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "per minute" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "per hour" @@ -2604,8 +2601,8 @@ msgstr "Sort by key" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Operations" @@ -2668,7 +2665,7 @@ msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Kill" @@ -2695,30 +2692,30 @@ msgstr "মোট" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Display PDF schema" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Server version" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" @@ -2788,56 +2785,56 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "ইন্ডেস্ক সমূহ" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "মন্তব্যসমূহ" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "%s ইন্ডেস্ক মুছে ফেলা হয়েছে" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" @@ -2847,7 +2844,7 @@ msgstr "ডাটাবেজসমূহ Databases" msgid "Server" msgstr "সার্ভার" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2860,105 +2857,105 @@ msgstr "সার্ভার" msgid "Structure" msgstr "Structure" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Insert" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operations" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Query" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privileges" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Sent" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "User" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "বাইনারী লগ" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "চলকসমূহ" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "ইঞ্জিনসমূহ" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "ভূল" @@ -3008,73 +3005,73 @@ msgstr "কোন টেবিল নাই" msgid "There are no recent tables" msgstr "টেবিল পরীক্ষা কর" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "MySQL সার্ভার এর জন্য %s বন্ধ করা হয়েছে ." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Show slave status" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Table %s has been renamed to %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3082,22 +3079,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "ফাংশন" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "অপারেটর" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "মান" @@ -3107,7 +3104,7 @@ msgstr "মান" msgid "Table Search" msgstr "খুঁজুন" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3243,14 +3240,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3508,8 +3505,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:98 #, 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$ssetup script%2$s ব্যাবহার " "করে একটি তৈরী করতে পারেন " @@ -3622,12 +3619,12 @@ msgstr "টেবিলসমূহ" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "ডাটা" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Overhead" @@ -3741,18 +3738,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL query" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3842,7 +3839,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3853,8 +3850,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -4050,7 +4047,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4334,7 +4331,7 @@ msgid "Character set of the file" msgstr "ফাইল এর অক্ষরসমূহঃ" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "ফরমেট" @@ -4659,7 +4656,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "সার্ভারসমূহ" @@ -5955,7 +5952,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL query" @@ -6269,7 +6266,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6277,17 +6274,17 @@ msgid "" "configured)." msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "The server is not responding" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6347,8 +6344,8 @@ msgstr "একটি নতুন পাতা তৈরী কর" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "নাম" @@ -6474,19 +6471,19 @@ msgstr "" #| "will be kept as is." 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 "" "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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "ফাইল এর অক্ষরসমূহঃ" @@ -6980,8 +6977,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7057,7 +7054,7 @@ msgstr "Sent" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7136,7 +7133,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "হোষ্ট" @@ -7344,8 +7341,8 @@ msgstr "Export type" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7515,78 +7512,78 @@ msgstr "SQL compatibility mode" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "বাইনারী" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "ause of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Because of its length,
    this field might not be editable " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "বাইনারী -সম্পাদনা করবেন না" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "এবং তারপর" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "পূর্বের পাতায় ফিরে যাও" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "নতুন আরেকটি সাড়ি যোগ করুন" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "এই পাতায় ফিরে যাও" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "পরবর্তী সাড়ি সম্পাদনা করুন" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7614,7 +7611,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Submit" @@ -7632,7 +7629,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "আপনি কি সত্যি চান?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "No change" @@ -7886,7 +7883,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "বুকমার্ক করা SQL query" @@ -7933,6 +7930,10 @@ msgstr "" msgid "no description" msgstr "কোন বর্ণনা নাই" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Uncheck All" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7970,8 +7971,8 @@ msgstr "Show slave status" msgid "Slave status" msgstr "Show slave status" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "চলক" @@ -7996,7 +7997,7 @@ msgstr "যেকোন ব্যাবহারকারী" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -8027,10 +8028,10 @@ msgid "Generate Password" msgstr "পাসওয়ার্ড তৈরী কর" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8041,7 +8042,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8057,7 +8058,7 @@ msgstr "Table %s has been dropped" msgid "Event %1$s has been created." msgstr "Table %s has been dropped" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8067,16 +8068,16 @@ msgstr "" msgid "Edit event" msgstr "Sent" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Processes" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8091,7 +8092,7 @@ msgstr "Event type" msgid "Event type" msgstr "Event type" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8126,13 +8127,13 @@ msgstr "End" msgid "On completion preserve" msgstr "Complete inserts" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8157,7 +8158,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8179,7 +8180,7 @@ msgstr "" msgid "Returns" msgstr "Table options" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8187,140 +8188,140 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Invalid server index: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "কলামের নাম" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Creation" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Table options" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Query type" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8644,7 +8645,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8679,53 +8680,53 @@ msgstr "ডাটাবে এ খুজুঁনSearch in database" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "ক্যালেন্ডার" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Delimiter" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "শুধু দেখ" @@ -8819,7 +8820,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "ইন্ডেস্ক" @@ -8872,12 +8873,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "প্রাথমিক" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fulltext" @@ -8891,13 +8892,13 @@ msgstr "" msgid "after %s" msgstr "After %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -8954,7 +8955,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9164,8 +9165,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "User" @@ -9289,17 +9290,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "কোন ডাটাবেজ নাই" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9323,7 +9324,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 #, fuzzy msgid "Create relation" msgstr "Server version" @@ -9390,47 +9391,47 @@ msgstr "" msgid "Number of tables" msgstr "Number of fields" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Relation view" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Export" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "in query" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "টেবিল রিনেম করুন" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "ব্যাভারকারীর নাম" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "তৈরী করুন" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9612,13 +9613,13 @@ msgstr "" msgid "Files" msgstr "ক্ষেত্রসমূহ" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9634,7 +9635,7 @@ msgstr "অবস্থান" msgid "Original position" msgstr "প্রকৃত অবস্থান" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "তথ্য" @@ -9663,11 +9664,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "পরিসংখ্যান চালু কর" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9911,7 +9912,7 @@ msgid "None" msgstr "কোনটিই নয়" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9930,7 +9931,7 @@ msgstr "Administration" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ" @@ -9950,7 +9951,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10001,7 +10002,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "সুবিধাসমূহ সম্পাদনা কর" @@ -10016,7 +10017,7 @@ msgid "Export all" msgstr "Export" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "যেকোন" @@ -10038,77 +10039,77 @@ msgstr "Privileges" msgid "Users overview" msgstr "User overview" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" "লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy " "User" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... পুরাতনটা রেখে দাও" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10116,43 +10117,43 @@ msgstr "" " ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড " "কর" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same " "name and grant all privileges" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Check privileges for database "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "ডাটাবেজ-নির্দিষ্ট" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10437,51 +10438,51 @@ msgstr "Show open tables" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Show open tables" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Query type" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "ফাংশনসমূহ" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10489,119 +10490,119 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "Replication" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "গৃহীত" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Sent" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "বাদ দেওয়া হল" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "আইডি" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "নির্দেশ" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10609,78 +10610,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10688,7 +10689,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10696,42 +10697,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10739,33 +10740,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10774,248 +10775,248 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAY queues." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11023,99 +11024,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11123,18 +11124,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11142,70 +11143,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Key cache" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "শনিবার" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Refresh" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11214,7 +11215,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11222,18 +11223,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11241,11 +11242,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11253,92 +11254,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "ডাটাবেজ রিনেম কর" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "টেবিল সিলেক্ট করুন" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Invalid table name" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "একটি নতুন ইউজার যোগ করুন" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL query" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Row Statistics" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "সব সিলেক্ট করুন" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Query type" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11346,7 +11347,7 @@ msgid_plural "%d seconds" msgstr[0] "per second" msgstr[1] "per second" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12119,35 +12120,35 @@ msgstr "" msgid "Showing tables" msgstr "Show tables" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Space usage" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "ডায়নামিক" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "সাড়ির দৈর্ঘ্য" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "সাড়ির আকার" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12172,7 +12173,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12229,56 +12230,56 @@ msgstr "একটি Index যোগ করা হয়েছে %s" msgid "Show more actions" msgstr "Show PHP information" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Print view" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "টেবিলের শেষে" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "টেবিলের শুরুতে" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12804,8 +12805,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12939,8 +12940,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/br.po b/po/br.po index 2249cfbed5..5685fd5259 100644 --- a/po/br.po +++ b/po/br.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 14:55+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -42,53 +42,54 @@ msgstr "" "serret ar prenestr orin ganeoc'h pe stanket eo an hizivadurioù etre " "prenestroù gant ho merdeer evit abegoù surentez." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Klask" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Mont" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Anv ar meneger" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Deskrivadur" @@ -121,13 +122,13 @@ msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " msgid "Table comments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -136,30 +137,30 @@ msgstr "Evezhiadennoù diwar-benn an daolenn" msgid "Column" msgstr "Bann" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Seurt" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -197,8 +198,8 @@ msgstr "Liammet ouzh" msgid "Comments" msgstr "Evezhiadennoù" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -207,15 +208,15 @@ msgstr "Evezhiadennoù" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ket" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -230,8 +231,8 @@ msgstr "Ket" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -246,11 +247,11 @@ msgstr "Gwelet un ezporzhiadenn (chema) eus an diaz roadennoù" msgid "No tables found in database." msgstr "N'eus bet kavet taolenn ebet en diaz roadennoù." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Diuzañ pep tra" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Diziuzañ pep tra" @@ -327,12 +328,12 @@ msgstr "Ouzhpennañ ar strishadurioù" msgid "Switch to copied database" msgstr "Mont d'an diaz roadennoù eilet" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Etrerummadiñ" @@ -355,17 +356,17 @@ msgstr "Embann pe ezporzhiañ ur chema kar" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Taolenn" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Linennoù" @@ -380,21 +381,21 @@ msgstr "en implij" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Krouiñ" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Hizivadenn ziwezhañ" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Gwiriadenn ziwezhañ" @@ -457,7 +458,7 @@ msgid "Del" msgstr "Diverk." #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Pe" @@ -498,87 +499,87 @@ msgstr "Kas ar reked" msgid "Access denied" msgstr "Moned nac'het" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "unan eus ar gerioù da nebeutañ" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "an holl c'herioù" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "ar frazenn-rik" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "evel un droienn reoliek" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Disoc'hoù ar c'hlask evit \"%s\" %s : " -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s glotadenn en daolenn %s" -msgstr[1] "%s klotadenn en daolenn %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Furchal" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Diverkañ" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Hollad : %s glotadenn" msgstr[1] "Hollad : %s klotadenn" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s glotadenn en daolenn %s" +msgstr[1] "%s klotadenn en daolenn %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Furchal" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Diverkañ" + +#: db_search.php:362 msgid "Search in database" msgstr "Klask en diaz roadennoù" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Gerioù pe dalvoudoù da glask (Joker: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Kavout :" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Dispartiet e vez ar gerioù gant un esaouenn (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "E diabarzh an taolennoù" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Er bann :" @@ -617,18 +618,18 @@ msgstr "N'eo ket oberiant an heuliañ." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an " -"%steulioù titouriñ%s." +"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %" +"steulioù titouriñ%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Gwelet" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -638,93 +639,89 @@ msgstr "Eilañ" msgid "Sum" msgstr "Sammad" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "War ar servijer MySQL-mañ ez eo %s ar c'heflusker stokañ dre ziouer." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Evit ar re zo diuzet :" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Askañ pep tra" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Diaskañ pep tra" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Askañ an taolennoù gant dilerc'hioù" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ezporzhiañ" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Stumm da voullañ" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Goullonderiñ" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Diverkañ" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Gwiriañ an daolenn" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Lakaat an daolenn diouzh ar gwellañ" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Dresañ an daolenn" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Dielfennañ an daolenn" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Ouzhpennañ ur rakger d'an daolenn" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Erlec'hiañ rakger an daolenn" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Eilañ an daolenn enni ur rakger" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Geriadur roadennoù" @@ -737,9 +734,9 @@ msgstr "Taolennoù heuliet-pizh" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Diaz roadennoù" @@ -756,17 +753,17 @@ msgstr "Krouet" msgid "Updated" msgstr "Hizivaet" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Statud" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Oberiadenn" @@ -798,7 +795,7 @@ msgstr "Gwel prim eus ar framm" msgid "Untracked tables" msgstr "Taolennoù n'int ket heuliet" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Heuliañ an daolenn" @@ -935,11 +932,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an " -"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." +"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %" +"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1013,13 +1010,13 @@ msgstr "" "ne vez ket kresket ganeoc'h bevenn amzer PHP." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Sevenet eo bet ho reked SQL ervat" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Distreiñ" @@ -1110,8 +1107,8 @@ msgstr "Goullo eo ar ger-tremen !" msgid "The passwords aren't the same!" msgstr "Ne glot ket ar gerioù-tremen !" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Ouzhpennañ un implijer" @@ -1129,7 +1126,7 @@ msgid "Close" msgstr "Serriñ" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1156,13 +1153,13 @@ msgstr "Roadennoù stadegel" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Hollad" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Udb all" @@ -1192,7 +1189,7 @@ msgstr "Tremenerezh war ar servijer (e Kio)" msgid "Connections since last refresh" msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Argerzhioù" @@ -1252,13 +1249,13 @@ msgstr "Takad eskemm reizhiad (swap)" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "Kio" @@ -1310,7 +1307,7 @@ msgstr "Oktedoù kaset" msgid "Bytes received" msgstr "Oktedoù resevet" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Kevreadennoù" @@ -1351,11 +1348,11 @@ msgstr "%s daolenn" msgid "Questions" msgstr "Goulennoù" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Tremenerezh" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Arventennoù" @@ -1378,8 +1375,8 @@ msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Hini" @@ -1479,7 +1476,7 @@ msgstr "Kemmañ an arventennoù" msgid "Current settings" msgstr "Arventennoù zo bremañ" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Titl ar grafik" @@ -1568,7 +1565,7 @@ msgstr "Displegañ SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "" @@ -1669,10 +1666,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Enporzhiañ" @@ -1730,9 +1727,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Nullañ" @@ -1760,9 +1757,9 @@ msgstr "Diverkañ ar bann" msgid "Adding Primary Key" msgstr "Ouzhpennañ un alc'hwez kentidik" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Mat eo" @@ -1845,7 +1842,7 @@ 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:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1889,8 +1886,8 @@ msgstr "Diskouez ar voest rekedoù SQL" msgid "No rows selected" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Kemmañ" @@ -1907,7 +1904,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2420,16 +2417,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2539,8 +2536,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2593,7 +2590,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2620,27 +2617,27 @@ msgstr "" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2717,46 +2714,46 @@ msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." msgid "Javascript must be enabled past this point" msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "N'eus bet termenet meneger ebet !" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Menegerioù" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Dibar" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Gwasket" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalegezh" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Evezhiadenn" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Diverket eo bet an alc'hwez kentidik" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Diverket eo bet ar meneger %s." -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2765,9 +2762,9 @@ 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:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Diazoù roadennoù" @@ -2777,7 +2774,7 @@ msgstr "Diazoù roadennoù" msgid "Server" msgstr "Servijer" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2790,102 +2787,102 @@ msgstr "Servijer" msgid "Structure" msgstr "Framm" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Ensoc'hañ" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Oberiadennoù" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fazi" @@ -2927,72 +2924,72 @@ msgstr "Taolennoù nevez" msgid "There are no recent tables" msgstr "N'eus taolenn nevez ebet" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "Hegerz eo %s war ar servijer MySQL-mañ." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, 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:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "N'eo ket skoret al lusker stokañ %s gant ar servijer MySQL-mañ." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "N'eo ket bet kavet an tem %s !" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Diaz roadennoù direizh" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Anv taolenn direizh" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Anv an daolenn %s zo %s bremañ" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "N'eus ket bet gallet enrollañ dibaboù etrefas an taolennoù" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3000,22 +2997,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -3025,7 +3022,7 @@ msgstr "" msgid "Table Search" msgstr "Klask" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3157,14 +3154,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3422,11 +3419,11 @@ msgstr "Degemer mat e %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" -"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar " -"%1$sskript kefluniañ%2$s da sevel unan." +"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:110 msgid "" @@ -3540,12 +3537,12 @@ msgstr "Taolennoù" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Roadennoù" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Dilerc'hioù" @@ -3660,18 +3657,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Reked SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3759,7 +3756,7 @@ msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s" msgid "Click to toggle" msgstr "Klikañ evit gwintañ" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Furchal en hoc'h urzhiataer" @@ -3769,8 +3766,8 @@ msgstr "Furchal en hoc'h urzhiataer" msgid "Select from the web server upload directory %s:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet." @@ -3955,7 +3952,7 @@ msgstr "Adlakaat an talvoud dre ziouer" msgid "Allow users to customize this value" msgstr "Aotren an implijerien da bersonelaat an talvoud-mañ" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4249,7 +4246,7 @@ msgid "Character set of the file" msgstr "Strobad arouezennoù ar restr" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Furmad" @@ -4548,7 +4545,7 @@ msgstr "Taolenn verdeiñ" msgid "Customize appearance of the navigation frame" msgstr "Personelaat tres an daolenn verdeiñ" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servijerioù" @@ -5782,7 +5779,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6092,21 +6089,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6161,8 +6158,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6262,8 +6259,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:285 @@ -6271,7 +6268,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6734,8 +6731,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6795,7 +6792,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6856,7 +6853,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -7054,8 +7051,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." @@ -7223,75 +7220,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Kuzhat" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7315,7 +7312,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7333,7 +7330,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Ha sur oc'h e fell deoc'h " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7585,7 +7582,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7632,6 +7629,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Diaskañ pep tra" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7666,8 +7667,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7692,7 +7693,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7723,10 +7724,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7739,7 +7740,7 @@ msgstr "C'hwitet eo bet ar reked da-heul : \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Ho tigarez, disposupl eo bet assevel an argerzh." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Setu amañ ar reked a oa bet miret :" @@ -7756,7 +7757,7 @@ msgstr "Kemmet eo bet an argerzh %1s." msgid "Event %1$s has been created." msgstr "Krouet eo bet an argerzh %1s." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 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 :" @@ -7765,14 +7766,14 @@ msgstr "Ur fazi, pe meur a hini, zo bet en ur seveniñ ho koulenn :" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fazi en ur seveniñ ar reked" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7785,7 +7786,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "" @@ -7822,13 +7823,13 @@ msgstr "Fin" msgid "On completion preserve" msgstr "Ensoc'hadennoù sevenet" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7853,7 +7854,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7873,7 +7874,7 @@ msgstr "" msgid "Returns" msgstr "" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 #, fuzzy #| msgid "" #| "You are using PHP's deprecated 'mysql' extension, which is not capable of " @@ -7889,125 +7890,125 @@ msgstr "" "merañ ar rekedoù lies. Gallout a ra ar seveniñ argerzhioù stoket zo " "c'hwitañ ! Grit gant an astenn 'mysqli' gwellaet, kuit da gaout kudennoù." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Seurt argerzh faziek : \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Ho tigarez, disposupl eo bet assevel an argerzh." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Kemmet eo bet an argerzh %1$s." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Krouet eo bet an argerzh %1$s." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Kemmañ un argerzh" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Disoc'hoù seveniñ an argerzh %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Seveniñ an argerzh" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8307,7 +8308,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8338,50 +8339,50 @@ msgstr "" msgid "Click to select" msgstr "Klikañ evit diuzañ" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8465,7 +8466,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8512,12 +8513,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8530,12 +8531,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "" @@ -8580,7 +8581,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8724,8 +8725,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -8837,17 +8838,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Invalid table name" msgid "Filter databases by name" msgstr "Anv taolenn direizh" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Invalid table name" msgid "Filter tables by name" @@ -8870,7 +8871,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -8930,37 +8931,37 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "" @@ -9120,13 +9121,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9142,7 +9143,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -9171,11 +9172,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9415,7 +9416,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9432,7 +9433,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9452,7 +9453,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9501,7 +9502,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9516,7 +9517,7 @@ msgid "Export all" msgstr "Ezporzhiañ" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9536,115 +9537,115 @@ msgstr "Gwiriañ ar gwirioù" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "" @@ -9916,45 +9917,45 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Connections" msgid "Instructions" msgstr "Kevreadennoù" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9962,116 +9963,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Personelaat ar bajenn deraouiñ" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Urzhiad" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10079,78 +10080,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10158,7 +10159,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10166,42 +10167,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10209,33 +10210,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10244,244 +10245,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Furmad ar restr enporzhiañ" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10489,99 +10490,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10589,18 +10590,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10608,69 +10609,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "N'eo ket oberiant an heuliañ." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Freskaat" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "Bannoù evit an takadoù skrid CHAR" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adlakaat an talvoud dre ziouer" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10679,7 +10680,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10687,20 +10688,20 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Paouez gant an evezhiañ" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10708,11 +10709,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10720,96 +10721,96 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Dilemel ar grafik" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Foreign Key" msgid "Select series:" msgstr "Diuzit an alc'hwez estren" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Anv taolenn direizh" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add user" msgid "Add this series" msgstr "Ouzhpennañ un implijer" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Query statistics" msgid "Log statistics" msgstr "Stadegoù war ar rekedoù" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11548,35 +11549,35 @@ msgstr "" msgid "Showing tables" msgstr "Diskouez pep tra" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11599,7 +11600,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11651,53 +11652,53 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add/Delete columns" msgid "Move columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Stumm da voullañ" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12221,8 +12222,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12355,8 +12356,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/bs.po b/po/bs.po index d5aee67c5b..4a1494ccac 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: bosnian \n" -"Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"Language: bs\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: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -39,53 +39,54 @@ msgstr "" "zatvorili matični prozor, ili vaš preraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Pretraživanje" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Opis" @@ -116,13 +117,13 @@ msgstr "Komentar baze: " msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Komentari tabele" msgid "Column" msgstr "Imena kolona" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Komentari" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Ne" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Prikaži sadržaj (shemu) baze" msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "ništa" @@ -328,12 +329,12 @@ msgstr "" msgid "Switch to copied database" msgstr "Pređi na kopiranu tabelu" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Sortiranje" @@ -361,17 +362,17 @@ msgstr "Relaciona shema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Redova" @@ -386,21 +387,21 @@ msgstr "se koristi" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Posljednja izmjena" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Posljednja provjera" @@ -465,7 +466,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ili" @@ -510,60 +511,28 @@ msgstr "Izvrši SQL upit" msgid "Access denied" msgstr "Ulaz nije dozvoljen" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "bar jednu od riječi" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "sve riječi" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "tačan izraz" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "kao regularni izraz" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s pogodaka unutar tabele %s" -msgstr[1] "%s pogodaka unutar tabele %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Pregled" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Prikaz podataka tabele" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Obriši" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -571,31 +540,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Ukupno: %s pogodaka" msgstr[1] "Ukupno: %s pogodaka" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s pogodaka unutar tabele %s" +msgstr[1] "%s pogodaka unutar tabele %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Pregled" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Prikaz podataka tabele" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Obriši" + +#: db_search.php:362 msgid "Search in database" msgstr "Pretraživanje baze" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Riječi ili vrednosti koje se traže (džoker: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Traži:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Riječi se odvajaju razmakom (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tabela:" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -638,8 +639,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -647,7 +648,7 @@ msgstr "" msgid "View" msgstr "" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 #, fuzzy @@ -658,97 +659,93 @@ msgstr "Relacije" msgid "Sum" msgstr "Ukupno" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "nijedno" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Odbaci" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Provjeri tabelu" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimiziraj tabelu" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -761,9 +758,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza podataka" @@ -781,17 +778,17 @@ msgstr "Napravi" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Akcija" @@ -825,7 +822,7 @@ msgstr "Samo struktura" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Provjeri tabelu" @@ -976,8 +973,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1040,13 +1037,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazad" @@ -1139,8 +1136,8 @@ msgstr "Lozinka je prazna!" msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1163,7 +1160,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1193,13 +1190,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1231,7 +1228,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesi" @@ -1297,13 +1294,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1361,7 +1358,7 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Konekcije" @@ -1402,11 +1399,11 @@ msgstr "%s tabela" msgid "Questions" msgstr "Operacije" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1432,8 +1429,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "nema" @@ -1533,7 +1530,7 @@ msgstr "Opšte osobine relacija" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1619,7 +1616,7 @@ msgstr "Objasni SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Vrijeme" @@ -1726,10 +1723,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Izvoz" @@ -1784,9 +1781,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1817,9 +1814,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "U redu" @@ -1920,7 +1917,7 @@ msgstr "Brišem %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1962,8 +1959,8 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Promijeni" @@ -1978,7 +1975,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2547,16 +2544,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "u sekundi" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "u minuti" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "na sat" @@ -2672,8 +2669,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Operacije" @@ -2736,7 +2733,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Obustavi" @@ -2763,30 +2760,30 @@ msgstr "ukupno" msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2857,56 +2854,56 @@ msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." msgid "Javascript must be enabled past this point" msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Ključ nije definisan!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Ključevi" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Komentari" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primarni ključ je obrisan" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Ključ %s je obrisan" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Baze" @@ -2916,7 +2913,7 @@ msgstr "Baze" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2929,105 +2926,105 @@ msgstr "Server" msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegije" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Korisnik" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binarni" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Promjenljive" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Greška" @@ -3072,71 +3069,71 @@ msgstr "Nema tabela" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabeli %s promjenjeno ime u %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3144,23 +3141,23 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkcija" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "Operacije" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Vrijednost" @@ -3170,7 +3167,7 @@ msgstr "Vrijednost" msgid "Table Search" msgstr "Pretraživanje" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3305,14 +3302,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3569,8 +3566,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3682,12 +3679,12 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Podaci" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Prekoračenje" @@ -3802,18 +3799,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL upit" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3903,7 +3900,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3914,8 +3911,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" @@ -4112,7 +4109,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4389,7 +4386,7 @@ msgid "Character set of the file" msgstr "Karakter set datoteke:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4713,7 +4710,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5980,7 +5977,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL upit" @@ -6293,21 +6290,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6365,8 +6362,8 @@ msgstr "Napravi novu stranu" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Ime" @@ -6487,8 +6484,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:285 @@ -6496,7 +6493,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Karakter set datoteke:" @@ -6976,8 +6973,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7051,7 +7048,7 @@ msgstr "Poslato" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7124,7 +7121,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7331,8 +7328,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -7497,78 +7494,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarni" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Zbog njehove veličine, polje
    možda nećete moći da izmenite" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binarni - ne mijenjaj" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "direkcija za slanje web servera" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7596,7 +7593,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Pošalji" @@ -7616,7 +7613,7 @@ msgstr "Dodaj novo polje" msgid "Do you really want to execute the following query?" msgstr "Da li stvarno hoćete da " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Nema izmjena" @@ -7875,7 +7872,7 @@ msgid "" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Obilježen SQL-upit" @@ -7922,6 +7919,10 @@ msgstr "" msgid "no description" msgstr "nema opisa" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "nijedno" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7957,8 +7958,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Promjenljiva" @@ -7984,7 +7985,7 @@ msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Koristi tekst polje" @@ -8015,10 +8016,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8029,7 +8030,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8045,7 +8046,7 @@ msgstr "Tabela %s je odbačena" msgid "Event %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8055,16 +8056,16 @@ msgstr "" msgid "Edit event" msgstr "Poslato" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8079,7 +8080,7 @@ msgstr "Vrsta upita" msgid "Event type" msgstr "Vrsta upita" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8114,13 +8115,13 @@ msgstr "Kraj" msgid "On completion preserve" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8145,7 +8146,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8167,7 +8168,7 @@ msgstr "" msgid "Returns" msgstr "Opcije tabele" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8175,139 +8176,139 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Imena kolona" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Napravljeno" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Dužina/Vrijednost*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Dodaj novo polje" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy msgid "Remove last parameter" msgstr "Promjeni ime tabele u " -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dužina/Vrijednost*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tabele" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8625,7 +8626,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8660,52 +8661,52 @@ msgstr "Pretraživanje baze" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Izvrši SQL upit(e) na bazi %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Izvrši SQL upit(e) na bazi %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepisuj ovaj upit izvan prozora" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Prikaži ponovo ovaj upit" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Vidi samo" @@ -8813,7 +8814,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Ključ" @@ -8868,12 +8869,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primarni" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Tekst ključ" @@ -8887,12 +8888,12 @@ msgstr "" msgid "after %s" msgstr "Poslije %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Dodaj novo polje" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8942,7 +8943,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Prikazuje link ka ovoj slici (npr. direktno preuzimanje iz BLOB-a)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9137,8 +9138,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Korisnik" @@ -9263,17 +9264,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Baza ne postoji" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Promijeni redoslijed u tabeli" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9297,7 +9298,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9362,47 +9363,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Relacioni pogled" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Izvoz" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "u upitu" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Promjeni ime tabele u " -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Ime korisnika" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Napravi" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9580,13 +9581,13 @@ msgstr "" msgid "Files" msgstr "Polja" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -9602,7 +9603,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 #, fuzzy msgid "Information" msgstr "Podatci o prijavi" @@ -9632,11 +9633,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Uključi statistike" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9894,7 +9895,7 @@ msgid "None" msgstr "nema" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" @@ -9911,7 +9912,7 @@ msgstr "Administracija" msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" @@ -9931,7 +9932,7 @@ msgstr "Podatci o prijavi" msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9982,7 +9983,7 @@ msgstr "Izabrani korisnici su uspješno obrisani." msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Promijeni privilegije" @@ -9997,7 +9998,7 @@ msgid "Export all" msgstr "Izvoz" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Bilo koji" @@ -10019,120 +10020,120 @@ msgstr "Privilegije" msgid "Users overview" msgstr "Pregled korisnika" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na slijedećoj bazi" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... obriši stare iz tabela korisnika." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globalno" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "Džoker" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy msgid "User has been added." msgstr "Polje %s je obrisano" @@ -10415,49 +10416,49 @@ msgstr "Prikaži tabele" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "Prikaži tabele" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vrsta upita" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Funkcija" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10465,117 +10466,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Primljeno" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Poslato" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Naredba" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10583,78 +10584,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10662,7 +10663,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10670,42 +10671,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10713,33 +10714,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10748,243 +10749,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakter set datoteke:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10992,99 +10993,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11092,18 +11093,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11111,69 +11112,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vrsta upita" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Dodaj novo polje" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Generirao" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11182,7 +11183,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11190,18 +11191,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11209,11 +11210,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11221,89 +11222,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy msgid "Preset chart" msgstr "Promjeni ime tabele u " -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izaberi tabele" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Statistike reda" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Izaberi sve" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11311,7 +11312,7 @@ msgid_plural "%d seconds" msgstr[0] "u sekundi" msgstr[1] "u sekundi" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12084,35 +12085,35 @@ msgstr "Proveri referencijalni integritet:" msgid "Showing tables" msgstr "Prikaži tabele" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Zauzeće" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektivne" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistike reda" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Dužina reda" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Veličina reda" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12136,7 +12137,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12194,54 +12195,54 @@ msgstr "Ključ je upravo dodan %s" msgid "Show more actions" msgstr "Prikaži informacije o PHP-u" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy msgid "Move columns" msgstr "Dodaj novo polje" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Za štampu" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relacioni pogled" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy msgid "Add column" msgstr "Dodaj novo polje" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Na kraju tabele" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Poslije %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Napravi ključ na %s kolona" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12755,8 +12756,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12883,8 +12884,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ca.po b/po/ca.po index 2a343edcfe..805aa6c024 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-03-28 14:16+0200\n" "Last-Translator: Michal Čihař \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: Weblate 0.8\n" @@ -38,53 +38,54 @@ msgstr "" "la finestra \"pare\" o bé el teu navegador bloqueja actualitzacions entre " "finestres per la teva configuració de seguretat." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Cerca" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Executa" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nom de clau" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Descripció" @@ -117,13 +118,13 @@ msgstr "Comentaris de la base de dades: " msgid "Table comments" msgstr "Comentaris de la taula" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Comentaris de la taula" msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tipus" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Enllaços a" msgid "Comments" msgstr "Comentaris" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Comentaris" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "No" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "No" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Veure el bolcat (esquema) de la base de dades" msgid "No tables found in database." msgstr "Base de dades sense taules." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Tria Tot" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Desmarca tot" @@ -323,12 +324,12 @@ msgstr "Afegeix restriccions" msgid "Switch to copied database" msgstr "Canvia a la base de dades copiada" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Ordenació" @@ -351,17 +352,17 @@ msgstr "Edita o exporta l'esquema relacional" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Taula" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Fila" @@ -376,21 +377,21 @@ msgstr "en ús" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Creació" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Darrera actualització" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Darrera comprovació" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Sup" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "O" @@ -494,87 +495,87 @@ msgstr "Executa consulta" msgid "Access denied" msgstr "Accés denegat" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "al menys una d'aquestes paraules" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "totes les paraules" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "la frase exacta" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "com a expressió regular" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultats de la recerca per a \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s resultat a la taula %s" -msgstr[1] "%s resultats a la taula %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Navega" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Esborrar les coincidències per a la taula %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Esborra" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultat" msgstr[1] "Total: %s resultats" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s resultat a la taula %s" +msgstr[1] "%s resultats a la taula %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Navega" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Esborrar les coincidències per a la taula %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Esborra" + +#: db_search.php:362 msgid "Search in database" msgstr "Cerca a la base de dades" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Paraules o valors a cercar (comodí: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Trobat:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Paraules separades per un espai (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Dins les taules:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Dins la columna:" @@ -613,8 +614,8 @@ msgstr "El seguiment no està actiu." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." @@ -623,7 +624,7 @@ msgstr "" msgid "View" msgstr "Vista" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -633,93 +634,89 @@ msgstr "Replicació" msgid "Sum" msgstr "Suma" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Amb marca:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Marcar-ho tot" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Desmarcar tot" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporta" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Buida" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Elimina" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Verifica la taula" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimitza la taula" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Repara la taula" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analitza la taula" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Afegeix un prefix a la taula" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Canvia el prefix de la taula" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copia la taula amb prefix" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Diccionari de Dades" @@ -732,9 +729,9 @@ msgstr "Taules seguides" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de dades" @@ -751,17 +748,17 @@ msgstr "Creat" msgid "Updated" msgstr "Actualitzat" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Estat" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Acció" @@ -793,7 +790,7 @@ msgstr "Instantània de l'estructura" msgid "Untracked tables" msgstr "Taules no seguides" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Segueix taula" @@ -930,11 +927,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Probablement has triat d'enviar un arxiu massa gran. Consulta la " -"%sdocumentació%s per trobar formes de modificar aquest límit." +"Probablement has triat d'enviar un arxiu massa gran. Consulta la %" +"sdocumentació%s per trobar formes de modificar aquest límit." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1009,13 +1006,13 @@ msgstr "" "incrementeu els límits de temps de php." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "La vostra comanda SQL ha estat executada amb èxit" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Enrere" @@ -1101,8 +1098,8 @@ msgstr "La contrasenya és buida!" msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Afegirl usuari" @@ -1120,7 +1117,7 @@ msgid "Close" msgstr "Tanca" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1147,13 +1144,13 @@ msgstr "Dades estàtiques" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Altre" @@ -1183,7 +1180,7 @@ msgstr "Tràfic del servidor (en KiB)" msgid "Connections since last refresh" msgstr "Connexions des de la darrera actualització" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processos" @@ -1248,13 +1245,13 @@ msgstr "Intercanvi del sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1306,7 +1303,7 @@ msgstr "Bytes enviats" msgid "Bytes received" msgstr "Bytes rebuts" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Connexions" @@ -1345,11 +1342,11 @@ msgstr "%d taula(es)" msgid "Questions" msgstr "Consultes" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Tràfic" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Configuració" @@ -1372,8 +1369,8 @@ msgstr "Afegeix al menys una variable a la serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Res" @@ -1473,7 +1470,7 @@ msgstr "Canviar configuracions" msgid "Current settings" msgstr "Configuracions actuals" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Títol del gràfic" @@ -1564,7 +1561,7 @@ msgstr "Explicar sortida" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Temps" @@ -1663,10 +1660,10 @@ msgstr "" "Ha fallat la creació de la graella del gràfic amb la configuració importada. " "Restablint la configuració per defecte..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" @@ -1718,9 +1715,9 @@ msgstr "" msgid "Test" msgstr "Prova" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Cancel.lar" @@ -1748,9 +1745,9 @@ msgstr "Eliminació de columna" msgid "Adding Primary Key" msgstr "Afegir clau principal" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Correcte" @@ -1832,7 +1829,7 @@ msgstr "Esborrant" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "editor de ENUM/SET" @@ -1871,8 +1868,8 @@ msgstr "Mostrar quadre de consultes" msgid "No rows selected" msgstr "No s'han triat arxius" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Canvi" @@ -1887,7 +1884,7 @@ msgid "%d is not valid row number." msgstr "%d no és un num. vàlid de fila." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2383,16 +2380,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "per segon" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "per minut" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "per hora" @@ -2491,8 +2488,8 @@ msgstr "Classifica per la clau" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opcions" @@ -2545,7 +2542,7 @@ msgid "The row has been deleted" msgstr "S'ha esborrat la fila" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Finalitzar" @@ -2574,27 +2571,27 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Mostra el gràfic" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Crea una vista" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "No s'ha trobat l'enllaç" @@ -2672,46 +2669,46 @@ msgid "Javascript must be enabled past this point" msgstr "" "A partir d'aquest punt és necessari tenir les galetes -cookies- activades." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "No s'ha definit l'índex!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexos" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Única" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Comprimit" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinalitat" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentari" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "S'ha esborrat la clau principal" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "S'ha esborrat l'índex %s" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2720,9 +2717,9 @@ msgstr "" "Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria " "esborrar." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Bases de dades" @@ -2732,7 +2729,7 @@ msgstr "Bases de dades" msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2745,102 +2742,102 @@ msgstr "Servidor" msgid "Structure" msgstr "Estructura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Insereix" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacions" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Seguiment" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Disparadors" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "La taula sembla buida!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "La base de dades sembla buida!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Consulta segons exemple" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Permisos" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutines" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Esdeveniments" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dissenyador" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Usuaris" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronitza" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Registre binari" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Jocs de caràcters" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motors" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Error" @@ -2882,75 +2879,75 @@ msgstr "Taules recents" msgid "There are no recent tables" msgstr "No hi ha taules recents" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s està disponible en aquest servidor MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s s'ha desactivat en aquest servidor MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "Estat de taula desconegut " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Base de dades origen" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s no trobat!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Base de dades incorrecte" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Nom de taula incorrecte" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "La taula %s ha canviat de nom a %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2958,22 +2955,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funció" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operador" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Valor" @@ -2981,7 +2978,7 @@ msgstr "Valor" msgid "Table Search" msgstr "Cerca de taules" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Edita/Insereix" @@ -3111,14 +3108,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3378,8 +3375,8 @@ msgstr "Benvingut a %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -3494,12 +3491,12 @@ msgstr "Taules" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Dades" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Defragmentat" @@ -3613,18 +3610,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Consulta SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3712,7 +3709,7 @@ msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" msgid "Click to toggle" msgstr "Prem per canviar" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" @@ -3723,8 +3720,8 @@ msgid "Select from the web server upload directory %s:" msgstr "" "Selecciona des del directori de pujada d'arxius del servidor web %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" @@ -3908,7 +3905,7 @@ msgstr "Restaura el valor per defecte" msgid "Allow users to customize this value" msgstr "Permet als usuaris configurar aquest valor" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4194,7 +4191,7 @@ msgid "Character set of the file" msgstr "Joc de caràcters de l'arxiu" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4494,7 +4491,7 @@ msgstr "Marc de navegació" msgid "Customize appearance of the navigation frame" msgstr "Configura l'aspecte del marc de navegació" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servidors" @@ -5842,7 +5839,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Mantenir el quadre de consultes" @@ -6176,7 +6173,7 @@ msgstr "No es troba l'extensió %s. Comprova la configuració de PHP." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6184,15 +6181,15 @@ msgstr "" "El servidor no està responent (o el sòcol del servidor local MySQL no està " "configurat correctament)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "El servidor no respon." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detalls..." @@ -6249,8 +6246,8 @@ msgstr "Crea una taula" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nom" @@ -6351,12 +6348,12 @@ msgstr ", @TABLE@ serà el nom de la taula" #, 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 "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faran aquestes transformacions: " -"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " +"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3" +"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " "per a més detalls." #: libraries/display_export.lib.php:285 @@ -6364,7 +6361,7 @@ msgid "use this for future exports" msgstr "usa això per futures exportacions" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Joc de caràcters de l'arxiu:" @@ -6890,8 +6887,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." @@ -6953,7 +6950,7 @@ msgstr "Esdeveniment" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definició" @@ -7014,7 +7011,7 @@ msgstr "Mostra tipus MIME" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Servidor" @@ -7236,8 +7233,8 @@ msgstr "Exporta contingut" msgid "No data found for GIS visualization." msgstr "No s'han trobat dades per a visualització GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." @@ -7413,78 +7410,78 @@ msgstr "Modus de compatibilitat SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No feu servir AUTO_INCREMENT per a valors zero" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Amaga" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" " A causa de la seva longitud,
    aquesta columna no pot ser editable" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binari - no editeu" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "directori de pujada d'arxius del servidor web" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua l'inserció amb %s files" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "i llavors" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Insereix com a nova fila i ignora els errors" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Mostra la consulta d'inserció" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Torna" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Edita el següent registre" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" @@ -7508,7 +7505,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Envia" @@ -7526,7 +7523,7 @@ msgstr "Afegir prefix" msgid "Do you really want to execute the following query?" msgstr "Realment vols fer?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Sense canvis" @@ -7780,7 +7777,7 @@ msgstr "" "Mira a la documentació cóm actualitzar la teva taula de comentaris de les " "columnes" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Consulta SQL desada" @@ -7832,6 +7829,10 @@ msgstr "" msgid "no description" msgstr "sense descripció" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Desmarcar tot" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Configració de l'esclau" @@ -7868,8 +7869,8 @@ msgstr "Estat del mestre" msgid "Slave status" msgstr "Estat de l'esclau" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -7896,7 +7897,7 @@ msgstr "Qualsevol usuari" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Usa camp de text" @@ -7929,10 +7930,10 @@ msgid "Generate Password" msgstr "Genera una Contrasenya" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7943,7 +7944,7 @@ msgstr "Ha fallat la següent consulta: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7958,7 +7959,7 @@ msgstr "S'ha modificat l'esdeveniment %1$s." msgid "Event %1$s has been created." msgstr "S'ha creat l'esdeveniment %1$s." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7967,14 +7968,14 @@ msgstr "" msgid "Edit event" msgstr "Editar esdeveniment" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Error processant a la petició" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalls" @@ -7987,7 +7988,7 @@ msgstr "Nom d'esdeveniment" msgid "Event type" msgstr "Tipus d'event" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Canviar a %s" @@ -8014,13 +8015,13 @@ msgstr "Final" msgid "On completion preserve" msgstr "Preservar al completar" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8045,7 +8046,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8065,7 +8066,7 @@ msgstr "" msgid "Returns" msgstr "Retorna" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8073,125 +8074,125 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "tipus de rutina invàlid: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "S'ha modificat la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "S'ha creat la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Editar rutina" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Nom de rutina" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Direcció" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Longitud/Valors*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Afegir paràmetre" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Elimina el darrer paràmetre" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Tipus de retorn" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Retornar Longitud/Valors" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Retornar opcions" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Tipus de seguretat" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Resultats de l'execució de la rutina %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Paràmetres de rutina" @@ -8474,7 +8475,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Idioma desconegut: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Servidor actual" @@ -8505,50 +8506,50 @@ msgstr "Base de dades destinació" msgid "Click to select" msgstr "Clica per seleccionar" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Executar consulta/es SQL al servidor %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Neteja" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Columnes" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 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:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Separador" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Mostra aquesta consulta de nou" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Només mirar" @@ -8622,8 +8623,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." +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" +"sdocumentació%s." #: libraries/tbl_common.inc.php:53 #, fuzzy, php-format @@ -8653,7 +8654,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Índex" @@ -8706,12 +8707,12 @@ msgid "As defined:" msgstr "Com definit:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Principal" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Text sencer" @@ -8725,12 +8726,12 @@ msgstr "" msgid "after %s" msgstr "Darrere de %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Afegeix %s columna(es)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Has d'afegir al menys una columna." @@ -8786,7 +8787,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Es mostra com a enllaç a la imatge." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8961,8 +8962,8 @@ msgid "Protocol version" msgstr "Versió del protocol" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Usuari" @@ -9100,17 +9101,17 @@ msgstr "" "Servidor executant-se amb Suhosin. Si us plau, consulta %sdocumentation%s " "per a possibles assumptes." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "No hi ha bases de dades" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "filtrar taules pel nom" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "filtrar taules pel nom" @@ -9131,7 +9132,7 @@ msgstr "Menú esquerre Mostra/Amaga" msgid "Save position" msgstr "Desa la posició" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Crea una relació" @@ -9191,37 +9192,37 @@ msgstr "Amaga/Mostra taules sense relacions" msgid "Number of tables" msgstr "Nombre de taules" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Esborra la relació" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Operador de relació" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Excepte" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "subconsulta" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Reanomena a" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nou nom" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Agrega" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Opcions actives" @@ -9384,13 +9385,13 @@ msgstr "Tria el registre binari per veure" msgid "Files" msgstr "Arxius" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Talla les consultes mostrades" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Mostra Consultes completes" @@ -9406,7 +9407,7 @@ msgstr "Posició" msgid "Original position" msgstr "Posició original" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informació" @@ -9435,11 +9436,11 @@ msgstr "Replicació del mestre" msgid "Slave replication" msgstr "Replicació de l'esclau" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Activa Estadístiques" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9690,7 +9691,7 @@ msgid "None" msgstr "Cap" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" @@ -9707,7 +9708,7 @@ msgstr "Administració" msgid "Global privileges" msgstr "Permisos generals" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Permisos específics de base de dades" @@ -9727,7 +9728,7 @@ msgstr "Informació d'Identificació" msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "No s'han trobat usuaris." @@ -9776,7 +9777,7 @@ msgstr "S'han esborrat correctament els usuaris triats." msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Edita permisos" @@ -9791,7 +9792,7 @@ msgid "Export all" msgstr "Exporta" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Qualsevol" @@ -9811,81 +9812,81 @@ msgstr "Permisos" msgid "Users overview" msgstr "Vista global d'usuaris" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Atorga" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Treu els usuaris triats" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Treu tots els permisos actius dels usuaris i els esborra després." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" "Esborra les bases de dades que tenen els mateixos noms que els usuaris." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Permisos específics de columna" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Afegeix permisos a la següent base de dades" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Els comodins _ i % han de marcar-se amb una \\ per usar-los literalment" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Afegeix permisos a la següent taula" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nou usuari amb els mateixos permisos i ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... respecta l'antic." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... esborra l'antic de les taules d'usuaris." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... treu tots els permisos actius de l'antic i esborra'l després." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9893,41 +9894,41 @@ msgstr "" " ... esborra l'antic de les taules d'usuaris i recarrega els permisos " "després." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Base de dades per usuari" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Atorga tots els permisos a la base de dades "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Usuaris amb accés a "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "específic de la base de dades" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "comodins" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Usuari afegit." @@ -10213,43 +10214,43 @@ msgstr "Mostra només valors d'alerta" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Mostra valors sense format" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Enllaços relacionats:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Executar analitzador" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Instruccions" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10257,31 +10258,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Consultes des de l'inici: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Sentències" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Aquest servidor MySQL és en marxa durant %1$s. Es va iniciar en %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10289,19 +10290,19 @@ msgstr "" "Aquest servidor MySQL treballa com a mestre i esclau en un " "procés de replicació ." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Aquest servidor MySQL treballa com a mestre en un procés de " "replicació ." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Aquest servidor MySQL treballa com a esclau en un procés de " "replicació ." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10309,11 +10310,11 @@ msgstr "" "Per obtenir més informació sobre l'estat de replicació al servidor, visita " "la secció de replicació." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Estat de la replicació" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10321,45 +10322,45 @@ msgstr "" "En un servidor ocupat, els comptadors de bytes poden excedir el seu tamany, " "llavors les estadístiques donades pel servidor MySQL poden ser incorrectes." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Rebut" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Enviat" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "max. connexions a la vegada" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Intents erronis" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Avortat" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Ordre" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "La quantitat d'intents fallits de connexió al servidor MySQL." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10369,17 +10370,17 @@ msgstr "" "però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal " "per desar elements de la transacció." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El nombre de transaccions que han fet servir el registre binari temporal." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10391,11 +10392,11 @@ msgstr "" "incrementar el valor de tmp_table_size per fer que les taules temporals " "treballin en memòria en lloc de treballar en disc." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10403,7 +10404,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10411,7 +10412,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10419,23 +10420,23 @@ msgstr "" "El nombre de gestors de fils de INSERT DELAYED en ús. Cada taula diferent ón " "s'usa INSERT DELAYED té el seu propi fil." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "El nombre de vegades que s'ha esborrat una fila d'una taula." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10445,7 +10446,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10455,7 +10456,7 @@ msgstr "" "és alt, suggereix que el servidor està fent moltes cerques d'índex complet; " "per exemple, SELECT col1 FROM taula, assumint que col1 és indexat." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10464,7 +10465,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10474,7 +10475,7 @@ msgstr "" "Aixó s'incrementa si s'està consultant una columna d'index amb limitació de " "rang o si s'està fent una cerca d'index." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10483,7 +10484,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " "DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10495,7 +10496,7 @@ msgstr "" "Probablement tens moltes consultes que fan que MySQL cerqui les taules " "senceres o bé hi ha joins que no fan servir les claus acuradament." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10507,37 +10508,37 @@ msgstr "" "taules no estàn indexades acuradament o bé les consultes no estàn fetes per " "aprofitar les avantatges dels índexos definits." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "El nombre de peticions per a actualitzar una fila en una taula." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "El nombre de peticions per a insertar una fila en una taula." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El nombre de pàgines a la memòria cau que s'han demanat per ser " "actualitzades." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10547,7 +10548,7 @@ msgstr "" "pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o " "esborrar per qualsevol altra raó." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10559,11 +10560,11 @@ msgstr "" "Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10571,7 +10572,7 @@ msgstr "" "El nombre de lectures aleatòries d'InnoDB iniciades. Aixó passa quan una " "consulta cerca en una gran part de una taula però en ordre aleatori." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10579,11 +10580,11 @@ msgstr "" "El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB " "fa una cerca secuencial a la taula sencera." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "El nombre de peticions de lectures lògiques que InnoDB ha fet." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10591,7 +10592,7 @@ msgstr "" "El nombre de peticions de lectures lògiques que InnoDB no pot satisfer de la " "memòria cau i ha de fer lectures de pàgines individuals." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10605,55 +10606,55 @@ msgstr "" "comptador mostra instàncies d'aquestes esperes. Si el tamany de la memòria " "cau és adequat, aquest valor sól ser petit." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10661,35 +10662,35 @@ msgstr "" "El nombre d'esperes fetes degut al petit tamany de la memòria intermèdia del " "registre i a esperar a que s'actualitzés abans de continuar." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "El nombre d'escriptures físiques a l'arxiu de registre." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "El nombre d'escriptures fsync() fetes a l'arxiu de registre." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10698,51 +10699,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El temps promig en fer un bloqueig de fila, en milisegons." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "El temps total emprat en fer bloquejos de files, en milisegons." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El temps màxim en fer un bloqueig de fila, en milisegons." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "El nombre de vegades que un bloqueig de fila ha estat en espera." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10751,7 +10752,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10759,7 +10760,7 @@ msgstr "" "El nombre de blocs no usats a la memòria cau de les claus. Aquest valor es " "pot fer servir per saber quànta memòria cau de les claus s'utilitza." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10768,17 +10769,17 @@ msgstr "" "El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " "marca indicativa del màxim nombre de blocs usats mai a l'hora." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Format de l'arxiu importat" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "El nombre de peticions de lectura d'un bloc de clau de la memòria cau." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10788,27 +10789,27 @@ msgstr "" "gran, llavors el valor de key_buffer_size probablement és massa petit. El " "rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" "El nombre de peticions d'escriptura d'un bloc de clau a la memòria cau." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "El nombre d'escriptures físiques d'un bloc de clau a disc." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10819,17 +10820,17 @@ msgstr "" "de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " "compilat cap consulta." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El nombre de files esperant a ser escrites en cues INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10837,39 +10838,39 @@ msgstr "" "El nombre de taules que han estat obertes. Si el nombre de taules obertes és " "gran, probablement el valor de memòria cau de taula és massa petit." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El nombre de fluxes que estàn oberts (usats principalment per a registre)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "La quantitat de memòria liure per a memòria cau de consultes." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10882,7 +10883,7 @@ msgstr "" "l'estratègia menys recentment usada(least recently used - LRU) per decidir " "quines consultes treure de la memòria cau." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10890,19 +10891,19 @@ msgstr "" "El nombre de consultes no enviades a la memòria cau (no enviables, o no " "enviades degut al paràmetre query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "El nombre total de blocs a la memòria cau de consultes." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'estat de la replicació a prova d'errades (no implementat encara)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10910,12 +10911,12 @@ msgstr "" "El nombre de joins que no usen indexs. Si aquest valor no és 0, s'haurien de " "comprovar acuradament els indexs de les taules." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "El nombre de joins que han usat un rang de cerca en una taula de referència." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10924,7 +10925,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10932,16 +10933,16 @@ msgstr "" "El nombre de joins que han usat rangs a la primera taula. (Normalment no és " "crític si el valor no és molt gran.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "El nombre de joins que han fet una cerca a la primera taula sencera." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El nombre de taules temporals obertes actualment pel fil esclau de SQL." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10949,25 +10950,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Aixó és ACTIU -ON- si aquest servidor és un esclau que està connectat a un " "mestre." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "El nombre de fils que han tardat més que slow_launch_time segons a crear." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "El nombre de consultes que han tardat més que long_query_time segons." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10977,23 +10978,23 @@ msgstr "" "hagut de fer. Si aquest valor és gran, s'hauria de considerar incrementar el " "valor de la variable de sistema sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11006,7 +11007,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11016,11 +11017,11 @@ msgstr "" "comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria " "d'augmentar el valor de thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11031,63 +11032,63 @@ msgstr "" "gran, pots voler augmentar el valor de thread_cache_size. (Normalment això " "no dóna una millora de rendiment notable si es té una bona aplicació de fil.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "El seguiment no està actiu." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Començar monitorització" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Afegir gràfic" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Velocitat de refresc" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Columnes del gràfic" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Ordenació del gràfic" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Restaura el valor per defecte" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Instruccions de Monitorització" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11096,7 +11097,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11104,18 +11105,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11123,11 +11124,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11135,86 +11136,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Gràfic predefinit" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Variable(s) d'estat" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Seleccionar series:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "o escriu el nom de variable:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Afegir aquesta serie" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Series al gràfic:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Estadístiques del registre" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Rang de temps seleccionat:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Analitzador de consultes" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segon" msgstr[1] "%d segons" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11608,8 +11609,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:310 @@ -11637,8 +11638,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:314 #, php-format @@ -11998,35 +11999,35 @@ msgstr "Comprova la integritat referencial:" msgid "Showing tables" msgstr "Mostrant taules" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Utilització d'espai" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efectiu" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Estadística de files" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "estàtic" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinàmic" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Tamany de fila" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Mida de fila" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12052,7 +12053,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Límit de clau externa" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12104,51 +12105,51 @@ msgstr "S'ha afegit un índex a %s" msgid "Show more actions" msgstr "Mostra més accions" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Treu columna(es)" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Editar vista" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Vista de relacions" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Proposa una estructura de taula" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Afegeix columna(es)" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Al final de la taula" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Al principi de la taula" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Darrere de %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Crea un índex de %s columnes" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "particionat" @@ -12654,8 +12655,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12790,8 +12791,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ckb.po b/po/ckb.po index b08e007ffb..e1c3da8bc1 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-26 20:03+0200\n" "Last-Translator: Aso Naderi \n" "Language-Team: none\n" -"Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ckb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "گەڕان" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "بڕۆ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "کلیلەناو" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "پێناسە" @@ -118,13 +119,13 @@ msgstr ":تێبینی بنکەی دراوە" msgid "Table comments" msgstr "تێبینیەکانی خشتە" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "تێبینیەکانی خشتە" msgid "Column" msgstr "ستون" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "جۆر" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "بەستەر دەکات بۆ" msgid "Comments" msgstr "بۆچوون" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "بۆچوون" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "نەخێر" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "نەخێر" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "نیشاندانى بۆشایى (هێڵکارى) لە بنکەى درا msgid "No tables found in database." msgstr ".هیج خشتەیەک بوونی نیە لە نێو بنکەی دراو" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "هەڵبژاردنی هەموو" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "هەلنەبژاردنی هەموو" @@ -322,12 +323,12 @@ msgstr "زیادکردنی مەرج" msgid "Switch to copied database" msgstr "بڕۆ بۆ بنکەی دراوەی ڕوونووس کراو" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "ڕێکخستن" @@ -349,17 +350,17 @@ msgstr "" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "خشتە" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "خانە" @@ -374,21 +375,21 @@ msgstr "بەکار دەبرێت" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "درووستکردن" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "دواترین نوێکردنەوە" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "دواترین پشکنین" @@ -451,7 +452,7 @@ msgid "Del" msgstr "سڕینەوە" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "یان" @@ -492,86 +493,86 @@ msgstr "ناردنی پرس" msgid "Access denied" msgstr "ڕێگەنەدرا بە بینین" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "لانیکەم یەکێک لە وشەکان" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "هەموو وشەکان" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "دەقاودەقی ڕستە" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ئەنجامی گەڕان بۆ \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "" -msgstr[1] "" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "گەڕۆک" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "سڕینەوە" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: db_search.php:292 +#: db_search.php:296 +#, php-format +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "" +msgstr[1] "" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "گەڕۆک" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "سڕینەوە" + +#: db_search.php:362 msgid "Search in database" msgstr "گەڕان لە بنکەی دراو" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "دۆزینەوە:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "وشەکان بە هێمای بۆشایی جیا دەکرێنەوە (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy msgid "Inside tables:" msgstr "لەناو خشتە:\n" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "لە نێو خشتەی:" @@ -610,8 +611,8 @@ msgstr "بەدواچوونەوە ناچالاکە." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -619,7 +620,7 @@ msgstr "" msgid "View" msgstr "نیشاندان" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -629,93 +630,89 @@ msgstr "دووپاتکاری" msgid "Sum" msgstr "سەرجەم" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "پشکنینی هەموو" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "نەپشکنینی هەموو" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "هەناردن" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "پارچەیەک بۆ چاپکردن" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "بەتاڵ" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "پشکنینی خشتە" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "چاکردنی خشتە" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "شیکردنەوەى خشتە" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "زیادکردنی پێشگر بۆ خشتە" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "گۆڕینی پێشگری خشتە" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "لەبەرگرتنەوەی خشتە لەگەڵ پێشگر" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "فەرهەنگی زانیاریەکان" @@ -728,9 +725,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "بنکەی دراو" @@ -747,17 +744,17 @@ msgstr "دروستکراوە" msgid "Updated" msgstr "بارکراوە" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "ڕەوش" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "کردار" @@ -789,7 +786,7 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "" @@ -922,8 +919,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -986,13 +983,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "گەڕانەوە" @@ -1076,8 +1073,8 @@ msgstr "وشەی نهێنی بەتاڵە!" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "زیادکردنی بەکارهێنەر" @@ -1095,7 +1092,7 @@ msgid "Close" msgstr "داخستن" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1122,13 +1119,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "سەرجەم" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1158,7 +1155,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1218,13 +1215,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "" @@ -1276,7 +1273,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1315,11 +1312,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "" @@ -1342,8 +1339,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "هیچ" @@ -1436,7 +1433,7 @@ msgstr "" msgid "Current settings" msgstr "ڕێکخستنەکانی هەنووکە" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "" @@ -1514,7 +1511,7 @@ msgstr "" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "کات" @@ -1602,10 +1599,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "هێنان" @@ -1653,9 +1650,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "لابردن" @@ -1683,9 +1680,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "باشە" @@ -1761,7 +1758,7 @@ msgstr "" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1800,8 +1797,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "گۆڕین" @@ -1816,7 +1813,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2305,16 +2302,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2413,8 +2410,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2467,7 +2464,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2494,27 +2491,27 @@ msgstr "" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2583,55 +2580,55 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "" @@ -2641,7 +2638,7 @@ msgstr "" msgid "Server" msgstr "" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2654,102 +2651,102 @@ msgstr "" msgid "Structure" msgstr "" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2791,70 +2788,70 @@ msgstr "" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2862,22 +2859,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -2885,7 +2882,7 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "" @@ -3011,14 +3008,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3268,8 +3265,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3376,12 +3373,12 @@ msgstr "" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "" @@ -3488,18 +3485,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3587,7 +3584,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3597,8 +3594,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -3782,7 +3779,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4047,7 +4044,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "" @@ -4343,7 +4340,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5547,7 +5544,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "" @@ -5853,21 +5850,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -5922,8 +5919,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6023,8 +6020,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:285 @@ -6032,7 +6029,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6491,8 +6488,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6552,7 +6549,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6613,7 +6610,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -6807,8 +6804,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6970,75 +6967,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7062,7 +7059,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7078,7 +7075,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7328,7 +7325,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7375,6 +7372,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "نەپشکنینی هەموو" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7409,8 +7410,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7435,7 +7436,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7466,10 +7467,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7480,7 +7481,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7495,7 +7496,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7504,14 +7505,14 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7524,7 +7525,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "" @@ -7551,13 +7552,13 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7582,7 +7583,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7602,7 +7603,7 @@ msgstr "" msgid "Returns" msgstr "" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7610,125 +7611,125 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8009,7 +8010,7 @@ msgstr "" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8040,50 +8041,50 @@ msgstr "" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8166,7 +8167,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8211,12 +8212,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8229,12 +8230,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "" @@ -8279,7 +8280,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8417,8 +8418,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -8526,15 +8527,15 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "" @@ -8555,7 +8556,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -8615,37 +8616,37 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "" @@ -8805,13 +8806,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -8827,7 +8828,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -8855,11 +8856,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9097,7 +9098,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9114,7 +9115,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9134,7 +9135,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9183,7 +9184,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9196,7 +9197,7 @@ msgid "Export all" msgstr "" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9213,115 +9214,115 @@ msgstr "" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "" @@ -9588,43 +9589,43 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9632,115 +9633,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9748,78 +9749,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9827,7 +9828,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9835,42 +9836,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9878,33 +9879,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9913,242 +9914,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10156,99 +10157,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10256,18 +10257,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10275,61 +10276,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10338,7 +10339,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10346,18 +10347,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10365,11 +10366,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10377,86 +10378,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11176,35 +11177,35 @@ msgstr "" msgid "Showing tables" msgstr "" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11227,7 +11228,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11277,49 +11278,49 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -11809,8 +11810,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -11928,8 +11929,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/cs.po b/po/cs.po index c25893ce80..835b29e016 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" -"PO-Revision-Date: 2012-06-19 10:44+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" +"PO-Revision-Date: 2012-06-26 16:48+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: Weblate 1.0\n" @@ -40,53 +40,54 @@ msgstr "" "rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu " "bezpečnostních nastavení." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Vyhledávání" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Proveď" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Název klíče" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Popis" @@ -119,13 +120,13 @@ msgstr "Komentář k databázi: " msgid "Table comments" msgstr "Komentář k tabulce" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -134,30 +135,30 @@ msgstr "Komentář k tabulce" msgid "Column" msgstr "Pole" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -195,8 +196,8 @@ msgstr "Odkazuje na" msgid "Comments" msgstr "Komentáře" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -205,15 +206,15 @@ msgstr "Komentáře" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -228,8 +229,8 @@ msgstr "Ne" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -244,11 +245,11 @@ msgstr "Zobrazit výpis (schéma) databáze" msgid "No tables found in database." msgstr "V databázi nebyla nalezena žádná tabulka." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Vybrat vše" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Odznačit vše" @@ -323,12 +324,12 @@ msgstr "Přidat integritní omezení" msgid "Switch to copied database" msgstr "Přepnout na zkopírovanou databázi" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Porovnávání" @@ -351,17 +352,17 @@ msgstr "Upravit nebo exportovat relační schéma" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabulka" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Řádků" @@ -376,21 +377,21 @@ msgstr "právě se používá" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Vytvořeno" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Poslední změna" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Poslední kontrola" @@ -454,7 +455,7 @@ msgid "Del" msgstr "Smazat" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Nebo" @@ -495,59 +496,28 @@ msgstr "Provést dotaz" msgid "Access denied" msgstr "Přístup odepřen" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "alespoň jedno ze slov" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "všechna slova" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "přesnou frázi" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "jako regulární výraz" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Výsledky vyhledávání pro „%s“ %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "V tabulce %2$s je %1$s odpovídající záznam" -msgstr[1] "V tabulce %2$s jsou %1$s odpovídající záznamy" -msgstr[2] "V tabulce %2$s je %1$s odpovídajících záznamů" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Projít" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Odstranit nalezené záznamy z tabulky %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Odstranit" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -555,27 +525,60 @@ msgstr[0] "Celkem: %s odpovídající záznam" msgstr[1] "Celkem: %s odpovídající záznamy" msgstr[2] "Celkem: %s odpovídajících záznamů" -#: db_search.php:292 +#: db_search.php:296 +#, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s odpovídající záznam v %2$s" +msgstr[1] "%1$s odpovídající záznamy v %2$s" +msgstr[2] "%1$s odpovídajících záznamů v %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Projít" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Odstranit nalezené záznamy z tabulky %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Odstranit" + +#: db_search.php:362 msgid "Search in database" msgstr "Vyhledávání v databázi" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Najít:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Slova jsou oddělena mezerou („ “)." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "V tabulkách:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Uvnitř pole:" @@ -624,7 +627,7 @@ msgstr "" msgid "View" msgstr "Pohled" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -634,93 +637,89 @@ msgstr "Replikace" msgid "Sum" msgstr "Celkem" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je výchozí úložiště na tomto MySQL serveru." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Zaškrtnuté:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Zaškrtnout vše" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Odškrtnout vše" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Vyprázdnit" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Odstranit" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Zkontrolovat tabulku" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimalizovat tabulku" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Opravit tabulku" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyzovat tabulku" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Přidat tabulce předponu" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Změnit tabulce předponu" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Zkopírovat tabulku s předponou" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Datový slovník" @@ -733,9 +732,9 @@ msgstr "Sledované tabulky" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databáze" @@ -752,17 +751,17 @@ msgstr "Vytvořeno" msgid "Updated" msgstr "Aktualizováno" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Stav" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Operace" @@ -794,7 +793,7 @@ msgstr "Snímek struktury" msgid "Untracked tables" msgstr "Nesledované tabulky" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Sledovat tabulku" @@ -1006,13 +1005,13 @@ msgstr "" "časové limity v PHP." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Váš SQL-dotaz byl úspěšně vykonán" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Zpět" @@ -1096,8 +1095,8 @@ msgstr "Heslo je prázdné!" msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Přidat uživatele" @@ -1115,7 +1114,7 @@ msgid "Close" msgstr "Ukončit" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1142,13 +1141,13 @@ msgstr "Statická data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Celkem" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Ostatní" @@ -1178,7 +1177,7 @@ msgstr "Síťový provoz (v KiB)" msgid "Connections since last refresh" msgstr "Spojení od posledního obnovaní" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesy" @@ -1241,13 +1240,13 @@ msgstr "Odkládací oblast" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1299,7 +1298,7 @@ msgstr "Odesláno bajtů" msgid "Bytes received" msgstr "Přijato bajtů" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Připojení" @@ -1338,11 +1337,11 @@ msgstr "%d tabulek" msgid "Questions" msgstr "Dotazy" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Provoz" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Nastavení" @@ -1365,8 +1364,8 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Žádná" @@ -1465,7 +1464,7 @@ msgstr "Změnit nastavení" msgid "Current settings" msgstr "Aktuální nastavení" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Název grafu" @@ -1552,7 +1551,7 @@ msgstr "Vysvětlení dotazu" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Čas" @@ -1646,10 +1645,10 @@ msgstr "" "Selhalo vytvoření grafu z importovaného nastavení. Používám výchozí " "nastavení..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1697,9 +1696,9 @@ msgstr "Použitá proměnná / vzorec" msgid "Test" msgstr "Kontrola" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Zrušit" @@ -1727,9 +1726,9 @@ msgstr "Odstraňuji sloupec" msgid "Adding Primary Key" msgstr "Přidávám primární klíč" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1805,7 +1804,7 @@ msgstr "Odstraňuji" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definice uložené funkce musí obsahovat příkaz RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Upravit ENUM/SET" @@ -1844,8 +1843,8 @@ msgstr "Zobrazit pole pro dotaz" msgid "No rows selected" msgstr "Nebyl vybrán žádný řádek" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Změnit" @@ -1860,7 +1859,7 @@ msgid "%d is not valid row number." msgstr "%d není platné číslo řádku." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2360,16 +2359,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Neočekávaný znak na řádku %1$s. Očekáván tabelátor, ale nalezeno „%2$s“" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "za sekundu" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "za minutu" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "za hodinu" @@ -2470,8 +2469,8 @@ msgstr "Seřadit podle klíče" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Nastavení" @@ -2524,7 +2523,7 @@ msgid "The row has been deleted" msgstr "Řádek byl smazán" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Ukončit" @@ -2553,27 +2552,27 @@ msgstr "celkem" msgid "Query took %01.4f sec" msgstr "Dotaz trval %01.4f sekund" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Zobrazit data GIS" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Vytvořit pohled" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Odkaz nenalezen" @@ -2647,46 +2646,46 @@ msgstr "Přihlášení vyžaduje povolené cookies." msgid "Javascript must be enabled past this point" msgstr "Pro použití phpMyAdmina musíte mít zapnutý Javascript" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Není definován žádný klíč!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Klíče" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikátní" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Zabaleno" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Mohutnost" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentář" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primární klíč byl odstraněn" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Klíč %s byl odstraněn" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2695,9 +2694,9 @@ msgstr "" "Klíče %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být " "odstraněn." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Databáze" @@ -2707,7 +2706,7 @@ msgstr "Databáze" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2720,102 +2719,102 @@ msgstr "Server" msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Vložit" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Úpravy" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Sledování" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Spouště" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabulka se zdá být prázdná!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Databáze se zdá být prázdná!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Dotaz" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Oprávnění" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Události" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Návrhář" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Uživatelé" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchronizace" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binární log" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Proměnné" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Rozšíření" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Úložiště" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Chyba" @@ -2860,63 +2859,63 @@ msgstr "Nedávné tabulky" msgid "There are no recent tables" msgstr "Nebyly nalezeny žádné nedávné tabulky" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "Úložiště %s je na tomto MySQL serveru je dostupné." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Úložiště %s je na tomto MySQL serveru vypnuté." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "neznámý stav tabulky: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Zdrojová databáze „%s“ nebyla nalezena!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Cílová databáze „%s“ nebyla nalezena!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Chybná databáze" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Chybné jméno tabulky" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabulka %1$s byla přejmenována na %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Nepodařilo se uložit nastavení prohlížení tabulky" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2925,7 +2924,7 @@ msgstr "" "Selhalo vyčištění tabulky s nastavením procházení (viz $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2935,22 +2934,22 @@ msgstr "" "Nepodařilo se uložit nastavení „%s“. Změny se neprojeví po novém načtení " "stránky. Prosím zkontrolujte jestli se nezměnila struktura tabulky." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkce" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operátor" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Hodnota" @@ -2958,7 +2957,7 @@ msgstr "Hodnota" msgid "Table Search" msgstr "Vyhledávání v tabulce" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Upravit/Vložit" @@ -3508,12 +3507,12 @@ msgstr "Tabulky" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Navíc" @@ -3624,18 +3623,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-dotaz" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3723,7 +3722,7 @@ msgstr "Funkčnost %s je omezena známou chybou, viz %s" msgid "Click to toggle" msgstr "Klikněte pro přepnutí" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Procházet váš počítač:" @@ -3733,8 +3732,8 @@ msgstr "Procházet váš počítač:" msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" @@ -3918,7 +3917,7 @@ msgstr "Obnovit výchozí hodnotu" msgid "Allow users to customize this value" msgstr "Povolit uživatelům změnit tuto hodnotu" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4205,7 +4204,7 @@ msgid "Character set of the file" msgstr "Znaková sada souboru" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formát" @@ -4504,7 +4503,7 @@ msgstr "Navigační rám" msgid "Customize appearance of the navigation frame" msgstr "Přizpůsobí vzhled navigačního rámu" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servery" @@ -5827,7 +5826,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "Určuje zda má pole pro zadání dotazu zůstat zobrazeno i po odeslání" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Zachovat pole pro dotaz" @@ -6158,23 +6157,23 @@ msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." msgid "possible deep recursion attack" msgstr "možný útok rekurzí" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server neodpovídá (nebo není správně nastaven lokální socket MySQL serveru)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Server neodpovídá." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" "Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Podrobnosti..." @@ -6230,8 +6229,8 @@ msgstr "Vytvořit tabulku" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Název" @@ -6345,7 +6344,7 @@ msgid "use this for future exports" msgstr "použít i pro budoucí exporty" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Znaková sada souboru:" @@ -6921,7 +6920,7 @@ msgstr "Událost" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definice" @@ -6982,7 +6981,7 @@ msgstr "Zobrazit MIME typy" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Počítač" @@ -7196,8 +7195,8 @@ msgstr "Exportovat obsah" msgid "No data found for GIS visualization." msgstr "Nebyla nalezena žádná data zobrazení GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." @@ -7369,77 +7368,77 @@ msgstr "Režim kompatibility SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Skrýt" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binární" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Toto pole možná nepůjde
    kvůli délce upravit" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binární - neupravujte" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "soubor z adresáře pro upload" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "a poté" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Vložit další řádek" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Upravit následující řádek" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" @@ -7463,7 +7462,7 @@ msgid "To" msgstr "Na" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Provést" @@ -7479,7 +7478,7 @@ msgstr "Přidat předponu" msgid "Do you really want to execute the following query?" msgstr "Opravdu si přejete vykonat následující příkaz?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Žádná změna" @@ -7731,7 +7730,7 @@ msgstr "" "Podívejte se prosím do dokumentace, jak aktualizovat informace o polích v " "tabulce column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Oblíbený SQL dotaz" @@ -7783,6 +7782,10 @@ msgstr "" msgid "no description" msgstr "žádný popisek" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Odškrtnout vše" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Nastavení podřízeného" @@ -7819,8 +7822,8 @@ msgstr "Stav nadřízeného" msgid "Slave status" msgstr "Stav podřízeného" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Proměnná" @@ -7847,7 +7850,7 @@ msgstr "Jakýkoliv uživatel" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Použít textové pole" @@ -7880,10 +7883,10 @@ msgid "Generate Password" msgstr "Vytvořit heslo" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7894,7 +7897,7 @@ msgstr "Následující dotaz selhal: „%s“" msgid "Sorry, we failed to restore the dropped event." msgstr "Bohužel se nepodařilo obnovit odstraněnou událost." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Záložní dotaz byl:" @@ -7909,7 +7912,7 @@ msgstr "Byla změněna událost %1$s." msgid "Event %1$s has been created." msgstr "Byla vytvořena událost %1$s." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 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:" @@ -7918,14 +7921,14 @@ msgstr "Při zpracování požadavku došlo k několika chybám:" msgid "Edit event" msgstr "Upravit událost" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Chyba při zpracování požadavku" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Podrobnosti" @@ -7938,7 +7941,7 @@ msgstr "Název události" msgid "Event type" msgstr "Typ události" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Změnit na %s" @@ -7965,13 +7968,13 @@ msgstr "Konec" msgid "On completion preserve" msgstr "Při dokončení zachovat" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Zadavatel" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Zadavatel musí být ve tvaru \"uživatel@počítač\"" @@ -7996,7 +7999,7 @@ msgstr "Musíte zadat správný typ události." msgid "You must provide an event definition." msgstr "Musíte zadat definici události." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Nová" @@ -8016,7 +8019,7 @@ msgstr "Stav plánovače událostí" msgid "Returns" msgstr "Vrací" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8028,89 +8031,89 @@ msgstr "" "chcete těmto problémům vyhnout, začněte, prosím, používat nové rozšíření " "„mysqli“." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Chybný typ rutiny: „%s“" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Bohužel se nepodařilo obnovit odstraněnou rutinu." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Byla změněna rutina %1$s." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Byla vytvořena rutina %1$s." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Upravit rutinu" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Jméno rutiny" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parametry" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Směr" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Délka/Množina" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Přidat parametr" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Odstranit poslední parametr" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Návratový typ" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Návratová délka/hodnoty" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Možnosti návratové hodnoty" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Je deterministická" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Typ zabezpečení" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Přístup k SQL datům" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Musíte zadat jméno rutiny" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "„%s“ je chybný směr parametru." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8118,19 +8121,19 @@ msgstr "" "Musíte zadat parametr „Délka/Hodnoty“ pro parametry typu ENUM, SET, VARCHAR " "nebo VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Pro každý parametr musíte zadat jeho jméno a typ." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Musíte zadat platný návratový typ rutiny." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Musíte zadat definici rutiny." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8138,18 +8141,18 @@ 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" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Výsledek spuštění rutiny %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Spustit rutinu" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Parametry rutiny" @@ -8432,7 +8435,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Neznámý jazyk: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Aktuální server" @@ -8463,50 +8466,50 @@ msgstr "Cílová databáze" msgid "Click to select" msgstr "Klikněte pro vybrání" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Spustit SQL dotaz(y) na serveru %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Vyčistit" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 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:319 +#: libraries/sql_query_form.lib.php:332 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:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Oddělovač" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Zobrazit zde tento dotaz znovu" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Zobrazit" @@ -8608,7 +8611,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Klíč" @@ -8659,12 +8662,12 @@ msgid "As defined:" msgstr "Dle zadání:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primární" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fulltext" @@ -8677,12 +8680,12 @@ msgstr "první" msgid "after %s" msgstr "po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Přidat %s polí" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." @@ -8736,7 +8739,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Zobrazí odkaz na obrázek (například stáhnutí pole blob)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8910,8 +8913,8 @@ msgid "Protocol version" msgstr "Verze protokolu" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Uživatel" @@ -9045,15 +9048,15 @@ msgstr "" "Server používá Suhosin. Prosím podívejte se do %sdokumentace%s pro popis " "problémů, které tím mohou být způsobeny." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Žádné databáze" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "Filtrovat databáze podle jména" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtrovat tabulky podle jména" @@ -9074,7 +9077,7 @@ msgstr "Zobrazit/Skrýt levé menu" msgid "Save position" msgstr "Uložit rozmístění" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Vytvořit relaci" @@ -9134,37 +9137,37 @@ msgstr "Skrýt/Zobrazit tabulky bez relací" msgid "Number of tables" msgstr "Počet tabulek" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Odstranit relaci" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Relační operátor" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Kromě" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "poddotaz" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Přejmenovat na" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nové jméno" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Sloučit" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Zapnuté parametry" @@ -9326,13 +9329,13 @@ msgstr "Zvolte binární log pro zobrazení" msgid "Files" msgstr "Soubory" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Zobrazit zkrácené dotazy" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" @@ -9348,7 +9351,7 @@ msgstr "Pozice" msgid "Original position" msgstr "Původní pozice" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informace" @@ -9377,11 +9380,11 @@ msgstr "Replikace nadřízeného" msgid "Slave replication" msgstr "Replikace podřízeného" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Zobrazit podrobnosti" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9631,7 +9634,7 @@ msgid "None" msgstr "Žádná" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" @@ -9648,7 +9651,7 @@ msgstr "Správa" msgid "Global privileges" msgstr "Globální oprávnění" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" @@ -9668,7 +9671,7 @@ msgstr "Přihlašování" msgid "Do not change the password" msgstr "Neměnit heslo" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." @@ -9717,7 +9720,7 @@ msgstr "Vybraní uživatelé byli úspěšně odstraněni." msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Upravit oprávnění" @@ -9730,7 +9733,7 @@ msgid "Export all" msgstr "Exportovat vše" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Jakýkoliv" @@ -9747,25 +9750,25 @@ msgstr "Oprávnění pro %s" msgid "Users overview" msgstr "Přehled uživatelů" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Přidělování" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Odstranit vybrané uživatele" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Odstranit databáze se stejnými jmény jako uživatelé." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9778,90 +9781,90 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Přidat oprávnění pro databázi" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Zástupné znaky _ a % by měly být escapovány pomocí \\ pokud je chcete použít " "jako znak" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Přidat oprávnění pro tabulku" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Vytvořit nového uživatele se stejnými oprávněními a ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... zachovat původního uživatele." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... smazat původního uživatele ze všech tabulek." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... smazat uživatele a poté znovu načíst oprávnění." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Databáze pro uživatele" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Přidělit všechna oprávnění na databázi „%s“" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Uživatelé mající přístup k „%s“" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globální" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "závislé na databázi" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "maska" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Uživatel byl přidán." @@ -10146,23 +10149,23 @@ msgstr "Zobrazit jen hodnoty s upozorněním" msgid "Filter by category..." msgstr "Filtrovat podle kategorie..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Zobrazit neformátované hodnoty" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Související odkazy:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Spustit analýzu" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Návod" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10170,7 +10173,7 @@ msgstr "" "Poradce vám může doporučit změny v nastavení serveru analýzou stavových " "proměnných." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10180,7 +10183,7 @@ msgstr "" "jednoduchých výpočtů a základních pravidel, která nemusí nutně platit pro " "váš systém." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10190,7 +10193,7 @@ msgstr "" "(čtením dokumentace) a jak případně vrátit změny zpět. Špatné nastavení může " "mít velmi negativní vliv na výkon serveru." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10201,31 +10204,31 @@ msgstr "" "znatelnému zlepšení, můžete nastavení vrátit zpět." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Dotazů od spuštění: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Síťový provoz od spuštění: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Tento MySQL server běží %1$s. Čas spuštění: %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10233,17 +10236,17 @@ msgstr "" "Tento server pracuje jako nadřízený i podřízený v " "replikačním procesu." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Tento server pracuje jako nadřízený v replikačním procesu." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento server pracuje jako podřízený v replikačním procesu." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10251,11 +10254,11 @@ msgstr "" "Pro více informací o stavu replikace se podívejte do sekce replikace." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Stav replikace" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10263,46 +10266,46 @@ msgstr "" "Na hodně zatíženém serveru mohou čítače přetéct, takže statistiky MySQL " "serveru mohou být nepřesné." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Přijato" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Odesláno" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "maximum současných připojení" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Nepovedených pokusů" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Přerušené" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Příkaz" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" "Počet spojení, která byla ukončena bez korektního ukončení ze strany klienta." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet chybných připojení k MySQL serveru." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10312,16 +10315,16 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcí, které využily dočasný binární log." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Celkový počet připojení (i chybných) k MySQL serveru." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10332,18 +10335,18 @@ msgstr "" "Pokud je tato hodnota velká, můžete zvětšit parametr tmp_table_size a MySQL " "bude používat větší dočasné tabulky v paměti." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" "Počet dočasných tabulek vytvořených serverem v paměti při provádění dotazů." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10351,7 +10354,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10359,23 +10362,23 @@ msgstr "" "Počet vláken používaných pro INSERT DELAYED. Každá tabulka na které je " "použit INSERT DEKAYED má přiděleno jedno vlákno." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10384,7 +10387,7 @@ msgstr "" "Počet zjišťování tabulek. Tímto se nazývá dotaz NDB clusteru, jestli ví o " "tabulce daného jména." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10394,7 +10397,7 @@ msgstr "" "provádí mnoho kompletních procházení klíčů. Na příklad SELECT col1 FROM foo, " "pokud je col1 v klíči." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10402,7 +10405,7 @@ msgstr "" "Počet požadavků na přečtení řádku vycházející z klíče. Vysoká hodnota " "znamená, že dotazy správně využívají klíče." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10412,7 +10415,7 @@ msgstr "" "zvětšuje pokud provádíte dotaz na sloupec s klíčem s omezením rozsahu nebo " "prohledáváte klíč." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10420,7 +10423,7 @@ msgstr "" "Počet požadavků na přečtení předchozího řádku z klíče. Používané pro " "optimalizaci dotazů ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10432,7 +10435,7 @@ msgstr "" "Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " "nebo používáte spojení tabulek, která nevyužívají klíčů." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10442,35 +10445,35 @@ msgstr "" "Počet požadavků na přečtení dalšího řádku ze souboru. Tato hodnota je vysoká " "pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné klíče." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránek obsahujících data (změněné i nezměněné)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránek, na které je požadavek na vyprázdnění." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Počet volných stránek." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10479,7 +10482,7 @@ msgstr "" "Počet zamčených stránek, tzn. stránek, které jsou právě zapisovány nebo " "čteny nebo nemohou být odstraněny z jakéhokoliv důvodu." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10491,11 +10494,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10503,7 +10506,7 @@ msgstr "" "Počet provedených „náhodných“ dopředných čtení. Tato situace nastává pokud " "dotaz prochází velkou část tabulky v náhodném pořadí." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10511,11 +10514,11 @@ msgstr "" "Počet provedených sekvenčních dopředných čtení. Toto nastává pokud InnoDB " "musí procházet celou tabulku." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10523,7 +10526,7 @@ msgstr "" "Počet logických čtení, které nemohly být uspokojeny z bufferu, ale bylo " "nutné přečíst stránku ze souboru." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10536,55 +10539,55 @@ msgstr "" "k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, " "měla by tato hodnota být malá." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10592,35 +10595,35 @@ msgstr "" "Počet čekání kvůli plnému bufferu logu, který musel být vyprázdněn před " "pokračováním." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Počet skutečných zápisů do logovacího souboru." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Počet synchronizací fsync() provedených na logovacích souborech." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10628,51 +10631,51 @@ msgstr "" "Zakompilovaná velikost stránky InnoDB (výchozí je 16 kB). Mnoho hodnot je " "uváděno ve stránkách, pomocí této hodnoty je můžete přepočítat na velikost." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Počet zámků řádku, na které se v současné době čeká." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Průměrný čas potřebný pro získání zámku řádku, v milisekundách." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas strávený čekáním na zámek řádku, v milisekundách." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximální čas potřebný pro získání zámku řádku, v milisekundách." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Kolikrát se muselo čekat na zámek řádku." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10680,7 +10683,7 @@ msgstr "" "Počet bloků ve vyrovnávací paměti klíčů, které byly změněny, ale nebyly " "zapsány na disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10688,7 +10691,7 @@ msgstr "" "Počet nepoužitých bloků ve vyrovnávací paměti klíčů. Pomocí této hodnoty " "poznáte jak moc je vyrovnávací paměť využitá." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10697,15 +10700,15 @@ msgstr "" "Počet použitých bloků ve vyrovnávací paměti klíčů. Tato hodnota určuje " "maximum bloků, které kdy byly obsazeny najednou." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Procento využití vyrovnávací paměti klíčů (vypočítaná hodnota)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Počet požadavků na přečtení klíče z vyrovnávací paměti." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10715,7 +10718,7 @@ msgstr "" "pravděpodobně máte malou vyrovnávací paměť (key_buffer_size). Úspěšnost " "vyrovnávací paměti můžete spočítat jako Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10723,22 +10726,22 @@ msgstr "" "Úspěšnost vyrovnávací paměti klíčů spočítaná jako poměr skutečných a " "požadovaných čtení (vypočítaná hodnota)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Počet požadavků na zápis bloku klíče na disk." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Počet skutečných zápisů bloku klíče na disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procento skutečných zápisů v porovnání s požadavky na zápis (vypočítaná " "hodnota)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10748,17 +10751,17 @@ msgstr "" "dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že " "žádný dotaz ještě nebyl kompilován." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Maximální počet současně používaných připojení od spuštění serveru." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet řádků čekajících na zapsání ve frontě INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10766,19 +10769,19 @@ msgstr "" "Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, " "pravděpodobně máte malou vyrovnávací paměť pro tabulky." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otevřených streamů (používané převážně pro logování)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10788,19 +10791,19 @@ msgstr "" "na problému s fragmentací, která může být vyřešena spuštěním příkazu FLUSH " "QUERY CACHE." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Počet zásahů vyrovnávací paměti dotazů." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Počet dotazů přidaných do vyrovnávací paměti dotazů." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10812,7 +10815,7 @@ msgstr "" "Vyrovnávací paměť používá strategii LRU (nejdéle nepoužité) pro vyřazování " "dotazů z vyrovnávací paměti." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10820,19 +10823,19 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Počet dotazů ve vyrovnávací paměti dotazů." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10840,12 +10843,12 @@ msgstr "" "Počet spojení, které nevyužívaly klíče. Pokud tato hodnota není 0, měli " "byste zkontrolovat klíče tabulek." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, které používaly intervalové vyhledávání na referenční tabulce." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10853,7 +10856,7 @@ msgstr "" "Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " "(Pokud tato hodnota není 0, měli byste zkontrolovat klíče tabulek.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10861,38 +10864,38 @@ msgstr "" "Počet spojení, které používaly intervalové vyhledávání na první tabulce. " "(Tato hodnota obvykle není kritická i když je vysoká.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, které prováděly kompletní procházení první tabulky." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Počet dočasných tabulek v současné době otevřených podřízeným serverem." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "Celkový počet, kolikrát musel podřízený server opakovat transakce." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Tato položka je zapnutá, pokud server pracuje jako podřízený." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Počet dotazů, které trvaly déle než long_query_time sekund." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10901,23 +10904,23 @@ msgstr "" "Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš " "vysoké hodnotě zvažte zvýšení sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Počet řazených řádek." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Počet řazení provedených procházením tabulky." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet okamžitých získání zámku tabulky." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10928,7 +10931,7 @@ msgstr "" "problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit " "tabulky nebo použít replikaci." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -10938,11 +10941,11 @@ msgstr "" "spočítána jako Threads_created/Connections. Pokud je tato hodnota červená, " "měli byste zvýšit thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10953,47 +10956,47 @@ msgstr "" "velká, můžete zvětšit parametr thread_cache_size. (Na platformách, které " "mají dobrou implementaci vláken však toto nemá příliš velký vliv.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Úspěšnost vyrovnávací paměti vláken (vypočítaná hodnota)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Spustit monitor" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Návod/Nastavení" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Ukončit upravování grafů" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Přidat graf" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Upravit/Uspořádat grafy" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Obnovovací frekvence" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Sloupce grafu" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Uspořádání grafů" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11001,15 +11004,15 @@ msgstr "" "Uspořádání grafů je uloženo ve vašem prohlížeči. Pokud máte komplikovanější " "nastavení, můžete ho chtít exportovat a zálohovat." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Obnovit na výchozí hodnotu" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Instrukce monitoru" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11022,7 +11025,7 @@ msgstr "" "log_output na 'TABLE' a mít povolené záznam pomalých dotazů nebo všech " "dotazů. Zaznamenání všech dotazů ale může zvýšit zatížení serveru až o 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11034,11 +11037,11 @@ msgstr "" "podporována v MySQL 5.1.6 a novějších. I bez této podpory však můžete použít " "zobrazování grafů s informacemi o serveru." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Používání monitoru:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11048,7 +11051,7 @@ msgstr "" "můžete přidat další grafy, změnit obnovovací frekvenci nebo přesunout či " "odstranit grafy." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11060,11 +11063,11 @@ msgstr "" "nahrána tabulka sloučených dotazů, kde můžete zvolit libovolný dotaz k další " "analýze." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Poznámka:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11076,79 +11079,79 @@ msgstr "" "vybírat krátké časové období a záznam vypnout poté co již monitorování " "nebudete potřebovat." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Předdefinované grafy" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Stavové proměnné" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Vyberte série:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Obvykle monitorované" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "nebo zadejte jméno proměnné:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Zobrazit jako rozdíl" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Vynásobit" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Přidat jednoty" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Přidat tuto sérii" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Odstranit série" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Série v grafu:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Statistiky záznamů" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Zvolený časový rozsah:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Před sloučením odstranit proměnná data v příkazech INSERT" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Zvolte ze kterého záznamu chcete vygenerovat statistiku." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Výsledky jsou sloučeny podle textu dotazu." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Analýza dotazu" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11156,7 +11159,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekundy" msgstr[2] "%d sekund" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11935,35 +11938,35 @@ msgstr "Zkontrolovat integritu odkazů:" msgid "Showing tables" msgstr "Zobrazuji tabulky" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Využití místa" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektivní" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistika řádků" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statický" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamický" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Délka řádku" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Velikost řádku" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Další automatický klíč" @@ -11987,7 +11990,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Omezení cizího klíče" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Prostorový" @@ -12037,49 +12040,49 @@ msgstr "Na poli %s byl vytvořen klíč" msgid "Show more actions" msgstr "Zobrazit více operací" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Přesunout pole" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Přesuňte sloupce tažením nahoru nebo dolů." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Upravit pohled" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Zobrazit relace" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Navrhnout strukturu tabulky" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Přidat sloupec" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Na konci tabulky" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Na začátku tabulky" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Vytvořit klíč na  %s polích" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "používá oddíly" diff --git a/po/cy.po b/po/cy.po index 2afe30f8b9..5b49ef80e7 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:20+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -41,53 +41,54 @@ msgstr "" "ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod " "caniatáu diweddariadau traws-ffenest." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Chwilio" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Ewch" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Enw allweddol" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Disgrifiad" @@ -120,13 +121,13 @@ msgstr "Sylw cronfa ddata: " msgid "Table comments" msgstr "Sylwadau tabl" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -135,30 +136,30 @@ msgstr "Sylwadau tabl" msgid "Column" msgstr "Colofn" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Math" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -196,8 +197,8 @@ msgstr "Cysylltu i" msgid "Comments" msgstr "Sylwadau" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -206,15 +207,15 @@ msgstr "Sylwadau" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Na" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -229,8 +230,8 @@ msgstr "Na" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -245,11 +246,11 @@ msgstr "Dangos dadlwythiad (sgema) y gronfa ddata" msgid "No tables found in database." msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Dewis Pob" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Dad-ddewis Pob" @@ -326,12 +327,12 @@ msgstr "Ychwanegwch cyfyngiadau" msgid "Switch to copied database" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Coladiad" @@ -354,17 +355,17 @@ msgstr "Golygu neu allforio sgema perthynol" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabl" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rhesi" @@ -379,21 +380,21 @@ msgstr "ar ddefnydd" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Cread" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Diweddariad diwethaf" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Gwiriad diwethaf" @@ -457,7 +458,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Or" @@ -498,90 +499,90 @@ msgstr "Cyflwyno Ymholiad" msgid "Access denied" msgstr "Mynediad wedi'i wrthod" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "o leiaf un o'r geiriau" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "pob gair" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "y cymal union" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "fel mynegiad arferol (regular expression)" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Canlyniadau chwilio am \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s ergyd mewn tabl %s" -msgstr[1] "%s ergyd mewn tabl %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Pori" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Dileu'r cydweddau ar gyfer tabl %s" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Dileu" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Cyfanswm: %s cydwedd" msgstr[1] "Cyfanswm: %s cydwedd" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s ergyd mewn tabl %s" +msgstr[1] "%s ergyd mewn tabl %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Pori" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Dileu'r cydweddau ar gyfer tabl %s" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Dileu" + +#: db_search.php:362 msgid "Search in database" msgstr "Chwilio yn y gronfa ddata" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Geiriau neu werthoedd i'w chwilio amdanyn nhw (nod-chwiliwr: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Darganfod:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Caiff geiriau eu gwahanu gan nod bwlch (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tu fewn tabl(au):" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Tu fewn colofn:" @@ -620,8 +621,8 @@ msgstr "Nid yw tracio'n weithredol" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." @@ -630,7 +631,7 @@ msgstr "" msgid "View" msgstr "Dangos" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -640,95 +641,91 @@ msgstr "Dyblygiad" msgid "Sum" msgstr "Swm" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Gyda'r dewis:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Dewis Pob" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Dad-ddewis Pob" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Allforio" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Gwagu" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Gollwng" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Gwirio tabl" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimeiddio tabl" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Trwsio tabl" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Dadansoddi tabl" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Rename table to" msgid "Replace table prefix" msgstr "Ailenwi tabl i" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Geiriadur Data" @@ -741,9 +738,9 @@ msgstr "Tablau a draciwyd" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Cronfa ddata" @@ -760,17 +757,17 @@ msgstr "Crëwyd" msgid "Updated" msgstr "Diweddarwyd" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Statws" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Gweithred" @@ -802,7 +799,7 @@ msgstr "Ciplun strwythur" msgid "Untracked tables" msgstr "Tablau heb dracio" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Tracio tabl" @@ -953,8 +950,8 @@ msgstr "" #: import.php:86 #, 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 "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." @@ -1026,13 +1023,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nôl" @@ -1130,8 +1127,8 @@ msgstr "Mae'r cyfrinair yn wag!" msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1153,7 +1150,7 @@ msgid "Close" msgstr "Cau" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1184,13 +1181,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Cyfanswm" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1222,7 +1219,7 @@ msgstr "Dewis Gweinydd" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Prosesau" @@ -1292,13 +1289,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1358,7 +1355,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1401,11 +1398,11 @@ msgstr "%s tabl" msgid "Questions" msgstr "Fersiynau" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1434,8 +1431,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Dim" @@ -1536,7 +1533,7 @@ msgstr "Nodweddion perthynas cyffredinol" msgid "Current settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1630,7 +1627,7 @@ msgstr "Esbonio SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Amser" @@ -1740,10 +1737,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Mewnforio" @@ -1801,9 +1798,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Diddymu" @@ -1835,9 +1832,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "" @@ -1944,7 +1941,7 @@ msgstr "Dileu" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1989,8 +1986,8 @@ msgstr "Dangos ymholiad mewnosod" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Newid" @@ -2007,7 +2004,7 @@ msgid "%d is not valid row number." msgstr "Dydy %d ddim yn rhif rhes dilys." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2536,16 +2533,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2659,8 +2656,8 @@ msgstr "Trefnu gan allwedd" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opsiynau" @@ -2719,7 +2716,7 @@ msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Lladd" @@ -2746,31 +2743,31 @@ msgstr "cyfanswm" msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Argraffu golwg (gyda thestunau llawn)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" @@ -2841,46 +2838,46 @@ msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." msgid "Javascript must be enabled past this point" msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Dim indecs wedi'i ddiffinio!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indecsau" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unigryw" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Paciwyd" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Sylw" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Cafodd yr allwedd gynradd ei gollwng" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Cafodd indecs %s ei ollwng" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2889,9 +2886,9 @@ msgstr "" "Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un " "ohonyn nhw." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Cronfeydd Data" @@ -2901,7 +2898,7 @@ msgstr "Cronfeydd Data" msgid "Server" msgstr "Gweinydd" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2914,104 +2911,104 @@ msgstr "Gweinydd" msgid "Structure" msgstr "Strwythur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Mewnosod" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Tracio" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Mae'r gronfa ddata yn ymddangos yn wag!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Ymholiad" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Breintiau" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rheolweithiau" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Digwyddiadau" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dyluniwr" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Defnyddiwr" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Cydamseru" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log deuaidd" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Newidynnau" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Setiau nod" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Peiriannau" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Gwall" @@ -3057,74 +3054,74 @@ msgstr "Cyfrifwch y tablau" msgid "There are no recent tables" msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Does dim gwybodaeth statws fanwl ar gael ar gyfer y peiriant storio hwn." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "Mae %s ar gael ar y gweinydd MySQL hwn." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Cronfa ddata ffynhonnell" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Heb ddarganfod thema ddiofyn %s!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Crofna ddata annilys" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Enw tabl annilys" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Gwall wrth ailenwi tabl %1$s i %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Cafodd y tabl %s ei ailenwi i %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3132,22 +3129,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Swyddogaeth" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Gwerth" @@ -3157,7 +3154,7 @@ msgstr "Gwerth" msgid "Table Search" msgstr "Chwilio" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3291,14 +3288,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3556,11 +3553,11 @@ msgstr "Croeso i %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" -"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r " -"%1$sgript gosod%2$s er mwyn ei chreu." +"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1" +"$sgript gosod%2$s er mwyn ei chreu." #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3676,12 +3673,12 @@ msgstr "Tablau" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Gorbenion" @@ -3793,18 +3790,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Ymholiad SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3898,7 +3895,7 @@ msgstr "" msgid "Click to toggle" msgstr "Pwyso i ddewis" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3909,8 +3906,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" "Does dim modd cyrraedd y cyfeiriadur a osodoch chi ar gyfer gwaith a " @@ -4106,7 +4103,7 @@ msgstr "Adfer gwerth diofyn" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4389,7 +4386,7 @@ msgid "Character set of the file" msgstr "Set nodau y ffeil" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Fformat" @@ -4702,7 +4699,7 @@ msgstr "Ffrâm llywio" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Gweinyddion" @@ -5960,7 +5957,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "in query" msgid "Retain query box" @@ -6286,23 +6283,23 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Dyw'r gweinydd ddim yn ymateb" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Manylion..." @@ -6359,8 +6356,8 @@ msgstr "Crëwch dabl" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Enw" @@ -6481,8 +6478,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:285 @@ -6490,7 +6487,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Set nodau'r ffeil:" @@ -6977,8 +6974,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7054,7 +7051,7 @@ msgstr "Digwyddiad" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7125,7 +7122,7 @@ msgstr "Mathau MIME ar gael" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Gwesteiwr" @@ -7329,8 +7326,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7502,77 +7499,77 @@ msgstr "Modd cytunedd SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Cuddio" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Deuaidd" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Deuaidd - peidiwch â golygu" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "ac yna" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i " "symud unrhyw le" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7598,7 +7595,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Gyrru" @@ -7616,7 +7613,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "A ydych chi wir am" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Dim newid" @@ -7866,7 +7863,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7913,6 +7910,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Dad-ddewis Pob" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7947,8 +7948,8 @@ msgstr "Statws y meistr" msgid "Slave status" msgstr "Statws y caeth" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Newidyn" @@ -7973,7 +7974,7 @@ msgstr "Unrhyw ddefnyddiwr" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Defnyddiwch faes testun" @@ -8004,10 +8005,10 @@ msgid "Generate Password" msgstr "Generadu Cyfrinair" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8018,7 +8019,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8035,7 +8036,7 @@ msgstr "Cafodd golwg %s ei ollwng" msgid "Event %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8046,16 +8047,16 @@ msgstr "" msgid "Edit event" msgstr "Golygu gweinydd" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesau" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -8072,7 +8073,7 @@ msgstr "Math y digwyddiad" msgid "Event type" msgstr "Math y digwyddiad" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8104,13 +8105,13 @@ msgstr "Diwedd" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8135,7 +8136,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8157,7 +8158,7 @@ msgstr "" msgid "Returns" msgstr "Dychwelyd math" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8165,140 +8166,140 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Indecs gweinydd annilys: %s" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "View %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Cafodd golwg %s ei ollwng" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, 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." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit server" msgid "Edit routine" msgstr "Golygu gweinydd" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rheolweithiau" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Cysylltiadau uniongyrchol" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Tynnwch y gronfa ddata" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Dychwelyd math" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Actions" msgid "Return options" msgstr "Gweithredoedd" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Return type" msgid "Security type" msgstr "Dychwelyd math" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8623,7 +8624,7 @@ msgstr "" msgid "Unknown language: %1$s." msgstr "Iaith anhysbys: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Current server" msgid "Current Server" @@ -8656,50 +8657,50 @@ msgstr "Cronfa ddata targed" msgid "Click to select" msgstr "Pwyso i ddewis" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Clirio" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Cyfyngydd" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Dangoswch yr ymholiad hwn yma eto" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Dangos yn unig" @@ -8783,7 +8784,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indecs" @@ -8830,12 +8831,12 @@ msgid "As defined:" msgstr "Fel a ddiffiniwyd:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Cynradd" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Testunllawn" @@ -8848,12 +8849,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Ychwanegwch %s colofn" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." @@ -8898,7 +8899,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Mae'n dangos dolen er mwyn lawrlwytho'r ddelwedd hon." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9050,8 +9051,8 @@ msgid "Protocol version" msgstr "Fersiwn protocol" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Defnyddiwr" @@ -9170,17 +9171,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Dim cronfeydd data" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "enw tabl" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9203,7 +9204,7 @@ msgstr "" msgid "Save position" msgstr "Cadw safle" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Crëwch berthynas" @@ -9267,49 +9268,49 @@ msgstr "Cuddio/Dangos Tablau heb berthynas" msgid "Number of tables" msgstr "Nifer y tablau" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Dilëwch berthynas" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Perthynas wedi'i ddileu" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Allforio" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "mewn ymholiad" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Ailenwch golwg i" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "Page name" msgid "New name" msgstr "Enw'r dudalen" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Creu" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Actions" msgid "Active options" @@ -9481,13 +9482,13 @@ msgstr "" msgid "Files" msgstr "Ffeiliau" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9503,7 +9504,7 @@ msgstr "Safle" msgid "Original position" msgstr "Safle gwreiddiol" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Gwybodaeth" @@ -9532,11 +9533,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Galluogi Ystadegau" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9776,7 +9777,7 @@ msgid "None" msgstr "Dim" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9793,7 +9794,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9813,7 +9814,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9862,7 +9863,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9877,7 +9878,7 @@ msgid "Export all" msgstr "Allforio" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9899,115 +9900,115 @@ msgstr "Breintiau" msgid "Users overview" msgstr "Gorolwg" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10285,51 +10286,51 @@ msgstr "Dangoswch gronfeydd data a restrir yn unig" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show only listed databases" msgid "Show unformatted values" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Perthnasau" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "Ymholiad" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Swyddogaethau" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10337,117 +10338,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Gorchymyn" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10455,78 +10456,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10534,7 +10535,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10542,42 +10543,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10585,33 +10586,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10620,244 +10621,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Fformat y ffeil a mewnforiwyd" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10865,99 +10866,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10965,18 +10966,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10984,70 +10985,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Nid yw tracio'n weithredol" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "Rheolweithiau" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Adfywio" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "Ychwanegu/Dileu colofnau" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adfer gwerth diofyn" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11056,7 +11057,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11064,18 +11065,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11083,11 +11084,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11095,93 +11096,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Tynnwch y gronfa ddata" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Dewis Tablau" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Enw tabl annilys" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Ychwanegwch weinydd newydd" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Dangos ystadegau" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Dewis Tablau" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "Ymholiad" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11189,7 +11190,7 @@ msgid_plural "%d seconds" msgstr[0] "Eiliad" msgstr[1] "Eiliad" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11956,35 +11957,35 @@ msgstr "" msgid "Showing tables" msgstr "Dim tablau" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12007,7 +12008,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12061,53 +12062,53 @@ msgstr "" msgid "Show more actions" msgstr "Dangos fersiynau" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s column(s)" msgid "Move columns" msgstr "Ychwanegwch %s colofn" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Argraffu golwg" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12640,8 +12641,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12774,8 +12775,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13530,8 +13531,8 @@ msgstr "" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata " -#~ "%s?" +#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata %" +#~ "s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/da.po b/po/da.po index 455bb13cef..4aebc3cfa4 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" -"PO-Revision-Date: 2012-05-17 15:00+0200\n" -"Last-Translator: Michal Čihař \n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" +"PO-Revision-Date: 2012-06-25 16:57+0200\n" +"Last-Translator: Aputsiaq Niels Janussen \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "overliggende vindue eller din browser blokerer for tvær-vindue opdateringer " "i sikkerhedsindstillingerne." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Søg" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Udfør" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nøglenavn" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Beskrivelse" @@ -116,13 +117,13 @@ msgstr "Databasekommentar: " msgid "Table comments" msgstr "Tabel kommentarer" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "Tabel kommentarer" msgid "Column" msgstr "Kolonnenavn" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Datatype" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "Kommentarer" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nej" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "Nej" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "Vis dump (skema) af database" msgid "No tables found in database." msgstr "Ingen tabeller fundet i databasen." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Vælg alle" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Fravælg alle" @@ -254,16 +255,14 @@ msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" #: db_operations.php:314 -#, fuzzy, php-format -#| msgid "Database %s has been renamed to %s" +#, php-format msgid "Database %1$s has been renamed to %2$s" -msgstr "Database %s er blevet omdøbt til %s" +msgstr "Database %1$s er blevet omdøbt til %2$s" #: db_operations.php:318 -#, fuzzy, php-format -#| msgid "Database %s has been copied to %s" +#, php-format msgid "Database %1$s has been copied to %2$s" -msgstr "Database %s er blevet kopieret til %s" +msgstr "Databasen %1$s er blevet kopieret til %2$s" #: db_operations.php:449 msgid "Rename database to" @@ -322,12 +321,12 @@ msgstr "Tilføj begrænsninger" msgid "Switch to copied database" msgstr "Skift til den kopierede database" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Tegnsæt (sortering)" @@ -349,17 +348,17 @@ msgstr "Editer eller eksporter relations skema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rækker" @@ -374,21 +373,21 @@ msgstr "i brug" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Oprettelse" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Sidste opdatering" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Sidste check" @@ -451,7 +450,7 @@ msgid "Del" msgstr "Del (Slet)" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Eller" @@ -492,87 +491,87 @@ msgstr "Send forespørgsel" msgid "Access denied" msgstr "Adgang nægtet" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "mindst et af ordene" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "alle ord" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "den nøjagtige sætning" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "som regulært udtryk" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søgeresultater for \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s sammenfald i tabel %s" -msgstr[1] "%s sammenfald i tabel %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Vis" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Slet sammenfald for %s tabellen?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Slet" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "I alt: %s sammenfald" msgstr[1] "I alt %s sammenfald" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s sammenfald i tabel %2$s" +msgstr[1] "%1$s sammenfald i tabel %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Vis" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Slet sammenfald for %s tabellen?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Slet" + +#: db_search.php:362 msgid "Search in database" msgstr "Søg i databasen" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller værdier til at søge efter (jokertegn: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Find:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Ord adskilles af mellemrumstegn (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Indeni tabel(ler):" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Indeni kolonne:" @@ -611,8 +610,8 @@ msgstr "Sporing er ikke aktiv." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s." @@ -621,7 +620,7 @@ msgstr "" msgid "View" msgstr "Visning" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -631,95 +630,91 @@ msgstr "Replikation" msgid "Sum" msgstr "Sum" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard datalageret på denne MySQL-server." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Med det markerede:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Vælg alle" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Fravælg alle" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Udskriv" # By "Empty", if this is an action, it should translate to "Tøm" but if it's a # state it should translate to "Tom". -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tøm" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Slet" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Tjek tabel" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimer tabel" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Reparer tabel" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyser tabel" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Tilføj præfiks til tabel" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Erstat tabel præfiks" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopier tabel med præfiks" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -732,9 +727,9 @@ msgstr "Sporede tabeller" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Database" @@ -751,17 +746,17 @@ msgstr "Oprettet" msgid "Updated" msgstr "Opdateret" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Handling" @@ -793,7 +788,7 @@ msgstr "Øjebliksbillede af struktur" msgid "Untracked tables" msgstr "Ikke-sporede tabeller" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Sporingstabel" @@ -930,11 +925,11 @@ msgstr "" #: import.php:86 #, 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 har sandsynligvis forsøgt at uploade en for stor fil. Se venligst " -"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " +"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %" +"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " "begrænsning." #: import.php:224 import.php:464 @@ -1010,13 +1005,13 @@ msgstr "" "mindre du forøger PHP-tidsbegrænsningerne." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-forespørgsel blev udført korrekt" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Tilbage" @@ -1031,10 +1026,9 @@ msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." #: js/messages.php:30 -#, fuzzy, php-format -#| msgid "Do you really want to " +#, php-format msgid "Do you really want to execute \"%s\"?" -msgstr "Er du sikker på at du vil " +msgstr "Er du sikker på at du vil udføre \"%s\"?" #: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" @@ -1069,22 +1063,17 @@ msgid "This is not a number!" msgstr "Dette er ikke et tal!" #: js/messages.php:42 -#, fuzzy -#| msgid "Add index" msgid "Add Index" msgstr "Tilføj indeks" #: js/messages.php:43 -#, fuzzy -#| msgid "Edit mode" msgid "Edit Index" -msgstr "Redigeringstilstand" +msgstr "Redigér indeks" #: js/messages.php:44 tbl_indexes.php:318 -#, fuzzy, php-format -#| msgid "Add %s column(s)" +#, php-format msgid "Add %d column(s) to index" -msgstr "Tilføj %s kolonne(r)" +msgstr "Tilføj %d kolonne(r) til indeks" #. l10n: Default description for the y-Axis of Charts #: js/messages.php:48 @@ -1107,8 +1096,8 @@ msgstr "Der er ikke angivet nogen adgangskode" msgid "The passwords aren't the same!" msgstr "De to adgangskoder er ikke ens!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Opret bruger" @@ -1126,7 +1115,7 @@ msgid "Close" msgstr "Luk" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1153,13 +1142,13 @@ msgstr "Statiske data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Andet" @@ -1189,7 +1178,7 @@ msgstr "Server-trafik (i KiB)" msgid "Connections since last refresh" msgstr "Forbindelser siden sidste visning" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processer" @@ -1224,8 +1213,8 @@ msgid "" msgstr "" "Konfigurationen af diagramopstillingen i din browsers lokale lager er ikke " "længere kompatibel med den nyere version af skærmdialogen. Det er meget " -"sandsynligt, at din aktuelle konfiguration ikke vil virke længere.Nulstil " -"derfor din konfiguration i menuen Settings" +"sandsynligt, at din aktuelle konfiguration ikke vil virke længere. Nulstil " +"derfor din konfiguration i menuen Settings." #: js/messages.php:93 msgid "Query cache efficiency" @@ -1253,13 +1242,13 @@ msgstr "System swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1311,7 +1300,7 @@ msgstr "Bytes sendt" msgid "Bytes received" msgstr "Bytes modtaget" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Forbindelser" @@ -1341,22 +1330,20 @@ msgid "EiB" msgstr "EiB" #: js/messages.php:128 -#, fuzzy, php-format -#| msgid "%s table" -#| msgid_plural "%s tables" +#, php-format msgid "%d table(s)" -msgstr "%s tabel" +msgstr "%d tabel(ler)" #. l10n: Questions is the name of a MySQL Status variable #: js/messages.php:131 msgid "Questions" msgstr "Spørgsmål" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Indstillinger" @@ -1379,8 +1366,8 @@ msgstr "Tilføj mindst en variabel til serien" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Ingen" @@ -1480,7 +1467,7 @@ msgstr "Ændre indstillinger" msgid "Current settings" msgstr "Aktuelle indstillinger" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Diagramtitel" @@ -1490,14 +1477,13 @@ msgid "Differential" msgstr "Differentiel" #: js/messages.php:167 -#, fuzzy, php-format -#| msgid "Divided by %s:" +#, php-format msgid "Divided by %s" -msgstr "Divideret med %s:" +msgstr "Divideret med %s" #: js/messages.php:168 msgid "Unit" -msgstr "" +msgstr "Enhed" #: js/messages.php:170 msgid "From slow log" @@ -1508,20 +1494,16 @@ msgid "From general log" msgstr "Fra generel log" #: js/messages.php:172 -#, fuzzy -#| msgid "Loading logs" msgid "Analysing logs" -msgstr "Indlæser logs" +msgstr "Analyserer logge" #: js/messages.php:173 msgid "Analysing & loading logs. This may take a while." msgstr "Analyserer & indlæser logs. Dette kan vare nogen tid." #: js/messages.php:174 -#, fuzzy -#| msgid "Read requests" msgid "Cancel request" -msgstr "Read-anmodninger" +msgstr "Annullér forespørgsel" #: js/messages.php:175 msgid "" @@ -1552,69 +1534,51 @@ msgid "Jump to Log table" msgstr "Gå til logtabellen" #: js/messages.php:180 -#, fuzzy -#| msgid "No data" msgid "No data found" -msgstr "Ingen data" +msgstr "Fandt ingen data" #: js/messages.php:181 msgid "Log analysed, but no data found in this time span." msgstr "Loggen er analyseret, men ingen data fundet i dette tidsinterval." #: js/messages.php:183 -#, fuzzy -#| msgid "Analyze" msgid "Analyzing..." -msgstr "Analyser" +msgstr "Analyserer ..." #: js/messages.php:184 -#, fuzzy -#| msgid "Explain SQL" msgid "Explain output" -msgstr "Forklar SQL" +msgstr "Forklar output" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Tid" #: js/messages.php:187 -#, fuzzy -#| msgid "Total:" msgid "Total time:" -msgstr "Total:" +msgstr "Samlet tid:" #: js/messages.php:188 -#, fuzzy -#| msgid "Profiling" msgid "Profiling results" -msgstr "Profilering" +msgstr "Resultat af profilering" #: js/messages.php:189 -#, fuzzy -#| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabel" #: js/messages.php:190 -#, fuzzy -#| msgid "Charset" msgid "Chart" -msgstr "Tegnsæt" +msgstr "Diagram" #: js/messages.php:191 -#, fuzzy -#| msgid "Add chart" msgid "Edit chart" -msgstr "Tilføj diagram" +msgstr "Redigér diagram" #: js/messages.php:192 -#, fuzzy -#| msgid "Series:" msgid "Series" -msgstr "Serie:" +msgstr "Serier" #. l10n: A collection of available filters #: js/messages.php:195 @@ -1670,12 +1634,10 @@ msgid "Affected rows:" msgstr "Berørte rækker:" #: js/messages.php:210 -#, fuzzy -#| msgid "Failed parsing config file. It doesn't seem to be valid JSON code" msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Kunne ikke fortolke konfigurationsfilen. Det ser ikke ud til at være gyldig " -"JSON kode" +"JSON-kode." #: js/messages.php:211 msgid "" @@ -1685,24 +1647,20 @@ msgstr "" "Kunne ikke bygge diagramgitter med den importerede konfiguration. Nulstiller " "til standard konfiguration..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" #: js/messages.php:213 -#, fuzzy -#| msgid "Could not import configuration" msgid "Import monitor configuration" -msgstr "Kunne ikke indlæse konfiguration" +msgstr "Importér overvågningskonfiguration" #: js/messages.php:214 -#, fuzzy -#| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" -msgstr "Vælg venligst den primære nøgle eller en unik nøgle" +msgstr "Vælg venligst filen du vil importere" #: js/messages.php:216 msgid "Analyse Query" @@ -1740,9 +1698,9 @@ msgstr "Brugt variabel/formel" msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Annuller" @@ -1770,9 +1728,9 @@ msgstr "Sletter kolonne" msgid "Adding Primary Key" msgstr "Tilføjer primær nøgle" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1813,22 +1771,16 @@ msgid "Show indexes" msgstr "Vis indekser" #: js/messages.php:257 libraries/mult_submits.inc.php:315 -#, fuzzy -#| msgid "Disable foreign key checks" msgid "Foreign key check:" -msgstr "Slå fremmednøgle-checks fra" +msgstr "Tjek af fremmednøgle:" #: js/messages.php:258 libraries/mult_submits.inc.php:319 -#, fuzzy -#| msgid "Enabled" msgid "(Enabled)" -msgstr "Slået til" +msgstr "(Slået til)" #: js/messages.php:259 libraries/mult_submits.inc.php:319 -#, fuzzy -#| msgid "Disabled" msgid "(Disabled)" -msgstr "Slået fra" +msgstr "(Slået fra)" #: js/messages.php:262 msgid "Searching" @@ -1856,33 +1808,27 @@ msgstr "" "Ifølge definitionen på en stored function, skal denne indeholde et RETURN-" "udtryk!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" -msgstr "" +msgstr "ENUM/SET-redigeringsværktøj" #: js/messages.php:273 -#, fuzzy, php-format -#| msgid "Values for the column \"%s\"" +#, php-format msgid "Values for column %s" -msgstr "Værdier for kolonnen \"%s\"" +msgstr "Værdier for kolonnen %s" #: js/messages.php:274 -#, fuzzy -#| msgid "Values for the column \"%s\"" msgid "Values for a new column" -msgstr "Værdier for kolonnen \"%s\"" +msgstr "Værdier for en ny kolonne" #: js/messages.php:275 -#, fuzzy -#| msgid "Enter each value in a separate field." msgid "Enter each value in a separate field" -msgstr "Indtast hver værdi i et seperat felt." +msgstr "Indtast hver værdi i et separat felt" #: js/messages.php:276 -#, fuzzy, php-format -#| msgid "+ Add a value" +#, php-format msgid "Add %d value(s)" -msgstr "+ Tilføj en værdi" +msgstr "Tilføj %d værdi(er)" #: js/messages.php:279 msgid "" @@ -1902,8 +1848,8 @@ msgstr "Vis forespørgselsbox" msgid "No rows selected" msgstr "Ingen rækker valgt" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Ret" @@ -1918,7 +1864,7 @@ msgid "%d is not valid row number." msgstr "%d er ikke et gyldigt rækkenummer." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -1940,11 +1886,11 @@ msgstr "Forstør søgning" #: js/messages.php:300 msgid "Each point represents a data row." -msgstr "Hvert punkt repræsenterer en datarække" +msgstr "Hvert punkt repræsenterer en datarække." #: js/messages.php:302 msgid "Hovering over a point will show its label." -msgstr "Ved at holde pointeren over et punkt vises dets etiket" +msgstr "Når der holdes over et punkt vises dets etiket." #: js/messages.php:304 msgid "To zoom in, select a section of the plot with the mouse." @@ -1960,7 +1906,7 @@ msgstr "" #: js/messages.php:308 msgid "Click a data point to view and possibly edit the data row." -msgstr "Klik et datapunkt for at se og muligvis redigere datarækken" +msgstr "Klik et datapunkt for at se og muligvis redigere datarækken." #: js/messages.php:310 msgid "The plot can be resized by dragging it along the bottom right corner." @@ -1976,10 +1922,8 @@ msgid "Select two different columns" msgstr "Vælg to forskellige kolonner" #: js/messages.php:314 -#, fuzzy -#| msgid "Query results operations" msgid "Query results" -msgstr "Forespørgselsresultat operationer" +msgstr "Forespørgselsresultater" #: js/messages.php:315 #, fuzzy @@ -2030,7 +1974,7 @@ msgstr "Tilføj mulighed for kolonne " #: js/messages.php:347 msgid "Press escape to cancel editing" -msgstr "Tryk på ESC for at annullere redigeringen." +msgstr "Tryk på ESC for at annullere redigeringen" #: js/messages.php:348 msgid "" @@ -2054,7 +1998,7 @@ msgstr "Klik for at markere/afmarkere" #: js/messages.php:352 msgid "Double-click to copy column name" -msgstr "" +msgstr "Dobbeltklik for at kopiere kolonnenavn" #: js/messages.php:353 msgid "Click the drop-down arrow
    to toggle column's visibility" @@ -2081,20 +2025,16 @@ msgid "Go to link" msgstr "Gå til link" #: js/messages.php:358 -#, fuzzy -#| msgid "Column names" msgid "Copy column name" -msgstr "Kolonnenavne" +msgstr "Kopiér kolonnenavn" #: js/messages.php:359 msgid "Right-click the column name to copy it to your clipboard." -msgstr "" +msgstr "Højreklik kolonnenavnet for at kopiere det til din udklipsholder." #: js/messages.php:360 -#, fuzzy -#| msgid "Update row(s)" msgid "Show data row(s)" -msgstr "Opdater række(r)" +msgstr "Vis datarække(r)" #: js/messages.php:363 msgid "Generate password" @@ -2365,15 +2305,13 @@ msgstr "uge" #. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month". #: js/messages.php:506 msgid "calendar-month-year" -msgstr "" +msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:508 -#, fuzzy -#| msgid "None" msgctxt "Year suffix" msgid "none" -msgstr "Ingen" +msgstr "ingen" #: js/messages.php:517 msgid "Hour" @@ -2390,29 +2328,27 @@ msgstr "Sekund" #: libraries/Advisor.class.php:67 #, php-format msgid "PHP threw following error: %s" -msgstr "" +msgstr "PHP smed følgende fejl: %s" #: libraries/Advisor.class.php:89 #, php-format msgid "Failed evaluating precondition for rule '%s'" -msgstr "" +msgstr "Mislykkedes med at evaluere betingelse for reglen '%s'" #: libraries/Advisor.class.php:106 #, php-format msgid "Failed calculating value for rule '%s'" -msgstr "" +msgstr "Mislykkedes med at beregne værdi for reglen '%s'" #: libraries/Advisor.class.php:125 #, php-format msgid "Failed running test for rule '%s'" -msgstr "" +msgstr "Mislykkedes med at afvikle test for reglen '%s'" #: libraries/Advisor.class.php:207 -#, fuzzy, php-format -#| msgid "" -#| "Failed formatting string for rule '%s'. PHP threw following error: %s" +#, php-format msgid "Failed formatting string for rule '%s'." -msgstr "Fejlende formatteringsstreng for regel '%s'. PHP gav følgende fejl: %s" +msgstr "Mislykkedes med at formatere streng for reglen '%s'." #: libraries/Advisor.class.php:361 #, php-format @@ -2436,16 +2372,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "pr. sekund" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "pr. minut" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "pr. time" @@ -2546,8 +2482,8 @@ msgstr "Sorteringsnøgle" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Indstillinger" @@ -2602,7 +2538,7 @@ msgid "The row has been deleted" msgstr "Rækken er slettet" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Dræb (Kill)" @@ -2631,27 +2567,27 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "forepørgsel tog %01.4f sek" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Udskriv (med fulde tekster)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Opret view" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Link ikke fundet" @@ -2726,46 +2662,46 @@ msgstr "Herefter skal cookies være slået til." msgid "Javascript must be enabled past this point" msgstr "Herefter skal cookies være slået til." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Intet indeks defineret!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primærnøglen er slettet" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s er blevet slettet" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2774,9 +2710,9 @@ msgstr "" "Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan " "sikkert fjernes." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Databaser" @@ -2786,7 +2722,7 @@ msgstr "Databaser" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2799,104 +2735,104 @@ msgstr "Server" msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Indsæt" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Sporing" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggers" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabel ser ud til at være tom!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Database ser ud til at være tom!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Foresp. via eks" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegier" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Hændelser" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Bruger" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synkroniser" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binær log" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variable" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Tegnsæt" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Udvidelsesmoduler" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Lagre" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fejl" @@ -2938,68 +2874,68 @@ msgstr "Seneste tabeller" msgid "There are no recent tables" msgstr "Der er ingen nye tabeller" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s er tilgængelig på denne MySQL-server." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, 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:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "ukendt tabelstatus: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Kildedatabase" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s ikke fundet!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Ugyldig database" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Ugyldigt tabelnavn" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabellen %s er nu omdøbt til %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Kunne ikke gemme brugerindstillinger for tabel" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3008,7 +2944,7 @@ msgstr "" "Kunne ikke rydde op i indstillinger for tabel-UI (se $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3019,22 +2955,22 @@ msgstr "" "efter at du opfrisker denne side. Undersøg, om tabelstrukturen er blevet " "ændret." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funktion" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operatør" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Værdi" @@ -3042,7 +2978,7 @@ msgstr "Værdi" msgid "Table Search" msgstr "Tabelsøgning" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Rediger/Indsæt" @@ -3172,14 +3108,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3439,8 +3375,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. " "Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en." @@ -3558,12 +3494,12 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Overhead" @@ -3679,18 +3615,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-forespørgsel" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3778,7 +3714,7 @@ msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" msgid "Click to toggle" msgstr "Klik for at skifte" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Gennemse din computer:" @@ -3788,8 +3724,8 @@ msgstr "Gennemse din computer:" msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" @@ -3977,7 +3913,7 @@ msgstr "Gendan standardværdi" msgid "Allow users to customize this value" msgstr "Tillad brugerdefinerede indstillinger for værdien" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4270,7 +4206,7 @@ msgid "Character set of the file" msgstr "Filens tegnsæt" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4570,7 +4506,7 @@ msgstr "Navigationsramme" msgid "Customize appearance of the navigation frame" msgstr "Tilpas navigationsrammens udseende" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servere" @@ -5207,7 +5143,7 @@ msgid "" msgstr "" "Deaktiver standardadvarslen, som vises på databasedetaljers strukturside, " "hvis nogen af de påkrævede tabeller i phpMyAdmin configuration storage ikke " -"kunne findes." +"kunne findes" #: libraries/config/messages.inc.php:338 msgid "Missing phpMyAdmin configuration storage tables" @@ -5900,7 +5836,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6233,7 +6169,7 @@ msgstr "%s udvidelsen mangler. Check din PHP-konfiguration." msgid "possible deep recursion attack" msgstr "muligt dybt rekursionsangreb" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6241,17 +6177,17 @@ msgid "" "configured)." msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveren svarer ikke" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detaljer..." @@ -6307,8 +6243,8 @@ msgstr "Opret tabel" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Navn" @@ -6408,8 +6344,8 @@ msgstr ", @TABLE@ vil blive tabelnavnet" #, 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 "" "Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede " "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " @@ -6420,7 +6356,7 @@ msgid "use this for future exports" msgstr "brug dette til fremtidige eksports" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Tegnsæt for filen:" @@ -6939,8 +6875,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 og yderliger information om PBXT kan findes på %sPrimeBase XT " "hjemmeside%s" @@ -7002,7 +6938,7 @@ msgstr "Hændelse" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definition" @@ -7063,7 +6999,7 @@ msgstr "Vis MIME-typer" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Vært" @@ -7285,8 +7221,8 @@ msgstr "Eksport indhold" msgid "No data found for GIS visualization." msgstr "Ingen data fundet for GIS visualization." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." @@ -7464,77 +7400,77 @@ msgstr "SQL-kompatibilitetsmodus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Brug ikke AUTO_INCREMENT for nulværdier" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Skjul" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binært" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "På grund af feltets længde,
    kan det muligvis ikke ændres" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binært - må ikke ændres" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "webserver upload-mappe" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsæt indsættelse med %s rækker" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "og derefter" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Indsæt som ny række og ignorer fejl" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Vis indsættelsesforespørgsel" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Rediger næste række" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL" "+piletasterne til at flytte frit omkring" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" @@ -7558,7 +7494,7 @@ msgid "To" msgstr "Til" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Send" @@ -7576,7 +7512,7 @@ msgstr "Tilføj præfiks" msgid "Do you really want to execute the following query?" msgstr "Er du sikker på at du vil " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Ingen ændring" @@ -7830,7 +7766,7 @@ msgstr "" "Se venligst dokumentationen for oplysninger om, hvordan du opdaterer din " "column_comments (kolonne-kommentarer) tabel" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "SQL-forespørgsel med bogmærke" @@ -7881,6 +7817,10 @@ msgstr "" msgid "no description" msgstr "ingen beskrivelse" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Fravælg alle" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Slavekonfiguration" @@ -7917,8 +7857,8 @@ msgstr "Masterstatus" msgid "Slave status" msgstr "Slavestatus" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variabel" @@ -7943,7 +7883,7 @@ msgstr "Enhver bruger" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Brug tekstfelt" @@ -7976,10 +7916,10 @@ msgid "Generate Password" msgstr "Generer adgangskode" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7990,7 +7930,7 @@ msgstr "Den følgende forespørgsel fejlede: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Beklager, det lykkedes ikke at genetablere den slettede hændelse." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Den gemte forespørgsel var:" @@ -8005,7 +7945,7 @@ msgstr "Hændelse \"%1$s\" er blevet ændret." msgid "Event %1$s has been created." msgstr "Hændelse %1$s er oprettet." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "Der er opstået fejl under behandling af anmodningen:" @@ -8014,14 +7954,14 @@ msgstr "Der er opstået fejl under behandling af anmodningen:" msgid "Edit event" msgstr "Rediger hændelse" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fejl i udførsel af forespørgsel" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detaljer" @@ -8034,7 +7974,7 @@ msgstr "Hændelsesnavn" msgid "Event type" msgstr "Hændelsestype" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Ændr til %s" @@ -8061,13 +8001,13 @@ msgstr "Slut" msgid "On completion preserve" msgstr "Efter udførsel bevar" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Opretter" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Opretter skal være i formatet \"brugernavn@værtsnavn\"" @@ -8092,7 +8032,7 @@ msgstr "Du skal angive en gyldig type for hændelsen." msgid "You must provide an event definition." msgstr "Du skal angive en hændelsesdefinition." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Ny" @@ -8112,7 +8052,7 @@ msgstr "Status for hændelsesskeduler" msgid "Returns" msgstr "Returværdier" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 #, fuzzy #| msgid "" #| "You are using PHP's deprecated 'mysql' extension, which is not capable of " @@ -8129,89 +8069,89 @@ msgstr "" "mislykkes! Brug den forbedrede 'mysqli \"udvidelse for at undgå " "eventuelle problemer." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Invalid rutinetype: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Beklager, det lykkedes ikke at genetablere den slettede rutine." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutine \"%1$s\" er blevet ændret." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Rutine %1$s er oprettet." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Rediger rutine" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Rutinenavn" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parametre" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Retning" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Længde/Værdi*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Tilføj parameter" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Fjern den sidste parameter" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Retur type" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Retur-længde/-værdier" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Retur-indstillinger" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Er deterministisk" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Sikkerhedstype" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL dataadgang" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Du skal angive et rutinenavn" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ugyldig retning \"%s\" givet for parameter." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8219,37 +8159,37 @@ msgstr "" "Du skal angive længde/værdier for rutineparametre af typen ENUM, SET, " "VARCHAR og VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Du skal angive et navn og en type for hver rutineparameter." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Du skal angive en gyldig returtype for rutinen." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Du skal angive en rutinedefinition." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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 række påvirket af den sidste SQL-sætning inde i proceduren" msgstr[1] "%d rækker påvirket af den sidste SQL-sætning inde i proceduren" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Udførelsesresultater af rutine %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Udfør rutine" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Rutineparametre" @@ -8534,7 +8474,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Ukendt sprog: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Aktuel server" @@ -8565,50 +8505,50 @@ msgstr "Måldatabase" msgid "Click to select" msgstr "Klik for at vælge" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Ryd" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Erstat eksisterende bogmærke af samme navn" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Adskiller" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Vis forespørgslen her igen" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Kun oversigt" @@ -8713,7 +8653,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -8766,12 +8706,12 @@ msgid "As defined:" msgstr "Som defineret:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primær" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fuldtekst" @@ -8785,12 +8725,12 @@ msgstr "" msgid "after %s" msgstr "Efter %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Tilføj %s kolonne(r)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Du skal tilføje mindst en kolonne." @@ -8845,7 +8785,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Viser et link til dette billede til download." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9019,8 +8959,8 @@ msgid "Protocol version" msgstr "Protokolversion" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Bruger" @@ -9135,8 +9075,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "phpMyAdmin configuration storage er ikke fuldstændigt konfigureret; nogle " -"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik " -"%sher%s." +"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik %" +"sher%s." #: main.php:357 #, php-format @@ -9154,17 +9094,17 @@ msgid "" "issues." msgstr "Server med Suhosin.Se %sdocumentation%s for mulige problemer." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Ingen databaser" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "filtrer tabeller efter navn" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "filtrer tabeller efter navn" @@ -9185,7 +9125,7 @@ msgstr "Vis/skjul venstre menu" msgid "Save position" msgstr "Gem position" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Opret relation" @@ -9247,37 +9187,37 @@ msgstr "Skjul/Vis tabeller uden relation" msgid "Number of tables" msgstr "Antal tabeller" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Slet relation" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Relationsoperator" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Undtagen" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "underforespørgsel" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Omdøb til" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nyt navn" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Sammenstil" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Aktive indstillinger" @@ -9440,13 +9380,13 @@ msgstr "Vælg binærlog til gennemsyn" msgid "Files" msgstr "Filer" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Trunker viste forespørgsler" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" @@ -9462,7 +9402,7 @@ msgstr "Position" msgid "Original position" msgstr "Original position" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Information" @@ -9491,11 +9431,11 @@ msgstr "Master replikation" msgid "Slave replication" msgstr "Slave replikation" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Slå statistikker til" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9743,7 +9683,7 @@ msgid "None" msgstr "Ingen" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" @@ -9760,7 +9700,7 @@ msgstr "Administration" msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" @@ -9781,7 +9721,7 @@ msgstr "Login-information" msgid "Do not change the password" msgstr "Adgangskoden må ikke ændres" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Ingen bruger fundet." @@ -9830,7 +9770,7 @@ msgstr "De valgte brugere er blevet korrekt slettet." msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Ret privilegier" @@ -9845,7 +9785,7 @@ msgid "Export all" msgstr "Eksporter" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Enhver" @@ -9867,84 +9807,84 @@ msgstr "Privilegier" msgid "Users overview" msgstr "Brugeroversigt" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Tildel" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Fjern valgte brugere" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Tilføj privilegier på følgende database" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Jokertegn % og _ skal escapes med en \\ for brug af dem som almindelige tegn." -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Tilføj privileges på følgende tabel" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Ret Login-information / Kopier bruger" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Opret en bruger med samme privilegier og ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... slet den gamle fra brugertabellerne." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbagekald alle aktive privilegier fra den gamle og slet den " "efterfølgende." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9952,41 +9892,41 @@ msgstr "" " ... slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Database for bruger" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Opret database med samme navn og tildel alle privilegier" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Tildel alle privilegier på database "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Brugere med adgang til "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "database-specifik" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "jokertegn" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Bruger er blevet tilføjet." @@ -10269,23 +10209,23 @@ msgstr "Vis kun alert-værdier" msgid "Filter by category..." msgstr "Filtrer efter kategori..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Vis uformatterede værdier" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Relaterede links:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Kør analysator" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Instruktioner/Opsætning" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10293,7 +10233,7 @@ msgstr "" "Rådgiversystemer kan give anbefalinger om servervariable ved at analysere " "serverens statusvariable" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10302,7 +10242,7 @@ msgstr "" "Bemærk dog, at dette system giver anbefalinger baseret på simple beregninger " "og tommelfingerregler, som ikke passer med dit system" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10312,7 +10252,7 @@ msgstr "" "dokumentationen) og hvordan du annullerer ændringer. Forkert tuning kan have " "en meget negativ effekt på ydeevnen." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10323,31 +10263,31 @@ msgstr "" "ingen klart synlig forskel var." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Forespørgsler siden startup: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Forespørgsler" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Netværkstrafik siden startup: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Denne MySQL-server har kørt i %1$s. Den startede op den %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10355,17 +10295,17 @@ msgstr "" "Denne MySQL server fungerer som master og slave i en " "replikationsproces." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Denne MySQL server fungerer som master i en replikationsproces." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne MySQL server fungerer som slave i en replikationsproces." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10373,11 +10313,11 @@ msgstr "" "For yderligere information om replikationsstatus på serveren gå til replication section." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Status for replikation" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10385,35 +10325,35 @@ msgstr "" "På en travl server er der risiko for at bytetællerne løber over, så disse " "statistikker som rapporteret af MySQL-serveren kan være forkerte." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Modtaget" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Sendt" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Maks. samtidige forbindelser" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Mislykkede forsøg" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Afbrudt" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Kommando" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10421,11 +10361,11 @@ msgstr "" "Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at " "lukke forbindelsen rigtigt." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antal mislykkede forsøg på at forbinde til MySQL server." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10435,17 +10375,17 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antal transaktioner der brugte det midlertidige binære log mellemlager." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antal forbindelsesforsøg (lykkedes eller ej) til MySQL server." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10457,11 +10397,11 @@ msgstr "" "overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller " "hukommelses-baserede i stedet for disk-baserede." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10469,7 +10409,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10477,7 +10417,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10485,23 +10425,23 @@ msgstr "" "Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel " "hvorpå en bruger INSERT DELAYED får sin egen tråd." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Antallet af gange en række blev slettet fra en tabel." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10511,7 +10451,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10521,7 +10461,7 @@ msgstr "" "antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT " "col1 FROM foo, antagende at col1 er indekseret." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10530,7 +10470,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10540,7 +10480,7 @@ msgstr "" "hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis " "du udfører et indeks scan." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10548,7 +10488,7 @@ msgstr "" "Antallet af anmodninger om at læse foregående række i nøgleorden. Denne " "læsemetode bruges hovedsageligt til at optimere ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10560,7 +10500,7 @@ msgstr "" "resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL " "scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10572,35 +10512,35 @@ msgstr "" "enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er " "skrevet til at drage fordel af de indeks du har." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Antallet af anmodninger om at opdatere en række i en tabel." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Antallet af anmodninger om at indsætte en række i en tabel." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antallet af buffer pool sider der er anmodet om at skulle flushes." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10610,7 +10550,7 @@ msgstr "" "sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10622,11 +10562,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10635,7 +10575,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10643,11 +10583,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10655,7 +10595,7 @@ msgstr "" "Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer " "pool og måtte lave en enkelt-side read." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10669,55 +10609,55 @@ msgstr "" "sider først. Denne tæller tæller hvor mange gange det er sket. Hvis buffer " "pool størrelsen er sat ordentligt, skulle denne værdi være lille." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10725,35 +10665,35 @@ msgstr "" "Antallet af waits vi har haft fordi log buffer var for lille og vi skulle " "vente på at den blev flushed før vi kunne fortsætte." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til logfilen." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10761,51 +10701,51 @@ msgstr "" "Den indkompilerede InnoDB sidestørrelse (standard 16KB). Mange værdier " "tælles i sider; sidestørrelsen gør at man let kan omregne dem til bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brugt på at hente rækkelåse, i millisekunder." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimale tid for at hente en rækkelås, i millisekunder." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Antallet af gange der skulle ventes på en rækkelås." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10814,7 +10754,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10822,7 +10762,7 @@ msgstr "" "Antallet af ubrugte blokke i nøglemellemlageret. Du kan bruge denne værdi " "til at fastslå hvor meget af nøglemellemlagere der er i brug." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10832,17 +10772,17 @@ msgstr "" "mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " "været i brug på en gang." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Percentage of used open files limit" msgid "Percentage of used key cache (calculated value)" msgstr "Procentdel af grænse for brugte åbne filer" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Antallet af anmodninger om at læse en nøgleblok fra mellemlageret." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10852,26 +10792,26 @@ msgstr "" "stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " "raten kan beregnes som Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Antallet af anmodninger om at skrive en nøgleblok til mellemlageret." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10883,7 +10823,7 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10891,12 +10831,12 @@ msgstr "" "Det maksimale antal forbindelser, som har været i brug samtidigt, siden " "serveren startede." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10904,19 +10844,19 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10926,19 +10866,19 @@ msgstr "" "kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE " "kommando." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10951,7 +10891,7 @@ msgstr "" "Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til " "at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10959,19 +10899,19 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på fejlsikker replikation (endnu ikke implementeret)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10979,11 +10919,11 @@ msgstr "" "Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du " "nøje tjekke indeksene på dine tabeller." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Antallet af joins der brugte en range søgning på en reference tabel." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10991,7 +10931,7 @@ msgstr "" "Antallet af joins uden nøgler der tjekker for nøglebrug efter hver række. " "(Hvis denne ikke er 0, bør du nøje tjekke indeks på dine tabeller.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10999,15 +10939,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Antallet af joins som lavede en fuld scan af den første tabel." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antallet af midlertidige tabeller i øjeblikket åbne af SQL tråden." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11015,12 +10955,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-" "forsøgt transaktioner." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dette er TIL hvis denne server er en slave der er forbundet til en master." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11028,13 +10968,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Antallet af forespørgsler der har taget mere end long_query_time sekunder." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11044,23 +10984,23 @@ msgstr "" "denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size " "systemvariablen." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Antallet af sorteringer udført ved scanning af tabellen." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11072,7 +11012,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikation." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11082,11 +11022,11 @@ msgstr "" "som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din " "thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11098,49 +11038,49 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Frekvens for hits i trådmellemlager %%" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde, der ikke sover." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Start Monitor" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Instruktioner/Opsætning" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Færdig med at omordne/redigere diagrammer" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Tilføj diagram" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Omordne/rediger diagrammer" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Opdateringsfrekvens" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Diagramkolonner:" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Diagramopstilling" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11148,15 +11088,15 @@ msgstr "" "Opsætningen af diagrammerne er lagret i browserens lokale lager. Det er " "muligt at eksportere den, hvis man har en kompleks opstilling." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Gendan standardværdi" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Monitorinstruktioner" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11170,7 +11110,7 @@ msgstr "" "og at slow_query_log eller general_log aktiveres. Bemærk dog, at\n" "general_log genererer en mængde data og forøger server load med op til 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11182,11 +11122,11 @@ msgstr "" "tabel understøttes af MySQL 5.1.6 og senere versioner. Man kan dog stadig " "bruge funktionerne for serverdiagrammer." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Brug af monitor:" -#: server_status.php:1652 +#: server_status.php:1661 #, fuzzy #| msgid "" #| "Ok, you are good to go! Once you click 'Start monitor' your browser will " @@ -11203,7 +11143,7 @@ msgstr "" "opdateringsfrekvensen under 'Indstilinger' eller fjerne diagrammer ved at " "bruge ikonet cog på det relevante diagram. " -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11215,11 +11155,11 @@ msgstr "" "Når det er bekræftet, vil dette indlæse en tabel af grupperede forspørgsler, " "hvor man kan klikke på en given SELECT-forespørgsel for at analysere det." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Bemærk venligst:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11231,86 +11171,86 @@ msgstr "" "tilrådes at vælge kun en lille tidsinterval og at deaktivere general_log og " "tømme dens tabel, når der ikke er behov for den længere." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Foruddefineret diagram" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Statusvariabel/-ble" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Vælg serie:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Almindeligt overvåget" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "eller indtast variabelnavn:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Vis som forskelsværdi" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Anvend divisor" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Tilføj enhed til dataværdier" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Tilføj denne serie" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Slet serie" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Serier i diagram" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Logstatistik" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Valgt tidsinterval:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hent kun SELECT,INSERT,UPDATE og DELETE forespørgsler" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Fjern variable data i INSERT forspørgsler for bedre gruppering" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Vælg fra hvilken log, du ønsker statistikken genereret fra." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Resultaterne er grupperet af forespørgselstekst." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Forespørgselsanalysator" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekunder" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11714,10 +11654,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -" Hvis du føler, at dette er nødvendigt, brug yderligere sikring - " -"%sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-" -"baseret beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en " -"udbyder med mange tusinde brugere." +" Hvis du føler, at dette er nødvendigt, brug yderligere sikring - %" +"sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-baseret " +"beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en udbyder med " +"mange tusinde brugere." #: setup/lib/index.lib.php:312 #, php-format @@ -11731,8 +11671,8 @@ msgstr "" "Du har sat [kbd]config[/kbd] autentifikation og inkluderet brugernavn og " "adgangskode for auto-login, hvilket er ikke en ønskværdig konfiguration for " "produktionssystemer. Enhver som kender eller gætter din phpMyAdmin URL kan " -"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt " -"%sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]." +"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt %" +"sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]." #: setup/lib/index.lib.php:314 #, php-format @@ -12105,35 +12045,35 @@ msgstr "Check reference-integriteten:" msgid "Showing tables" msgstr "Vis tabeller" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Pladsforbrug" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Rækkestatistik" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statisk" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Rækkelængde" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Rækkestørrelse" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Næste autoindeks" @@ -12158,7 +12098,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Begrænsning på fremmednøgle" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Spatial" @@ -12210,51 +12150,51 @@ msgstr "Der er tilføjet et indeks til %s" msgid "Show more actions" msgstr "Vis flere operationer" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Fjern kolonne(r)" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Rediger view" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Foreslå tabelstruktur" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Tilføj kolonne" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "I slutningen af tabel" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "I begyndelsen af tabel" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Efter %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Opret et indeks på  %s  kolonner" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partitioneret" @@ -12798,8 +12738,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Det aktuelle forhold mellem ledig og total forespørgselsmellemlager er %s%%. " "Det bør være over 80%%" @@ -12956,8 +12896,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% af alle sorteringer bruger midlertidige tabeller. Denne værdi bør være " "mindre end 10%%." diff --git a/po/de.po b/po/de.po index 3a282691c5..3be46eee00 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" -"PO-Revision-Date: 2012-06-06 19:43+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" +"PO-Revision-Date: 2012-06-24 16:15+0200\n" "Last-Translator: J. M. \n" "Language-Team: none\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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "wurde das Ursprungsfenster geschlossen oder der Browser verhindert den " "Zugriff aufgrund Ihrer Sicherheitseinstellungen." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Suche" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Schlüsselname" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Beschreibung" @@ -117,13 +118,13 @@ msgstr "Datenbankkommentar: " msgid "Table comments" msgstr "Tabellen-Kommentar" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Tabellen-Kommentar" msgid "Column" msgstr "Spalte" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Verweise" msgid "Comments" msgstr "Kommentare" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Kommentare" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nein" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Nein" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Dump (Schema) der Datenbank anzeigen" msgid "No tables found in database." msgstr "Es wurden keine Tabellen in der Datenbank gefunden." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Alle auswählen" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Auswahl entfernen" @@ -321,12 +322,12 @@ msgstr "Constraints hinzufügen" msgid "Switch to copied database" msgstr "Zu kopierter Datenbank wechseln" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Kollation" @@ -337,8 +338,8 @@ 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:639 msgid "Edit or export relational schema" @@ -349,17 +350,17 @@ msgstr "Beziehungsschema bearbeiten oder exportieren" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabelle" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Datensätze" @@ -374,21 +375,21 @@ msgstr "in Benutzung" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Erzeugt am" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Aktualisiert am" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Letzter Check am" @@ -451,7 +452,7 @@ msgid "Del" msgstr "Entf" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Oder" @@ -492,85 +493,87 @@ msgstr "SQL-Befehl ausführen" msgid "Access denied" msgstr "Zugriff verweigert" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "mindestens eines der Wörter" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "alle Wörter" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "genau diese Zeichenkette" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "als regulären Ausdruck" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Suchergebnisse für \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s Treffer in der Tabelle %2$s" -msgstr[1] "%1$s Treffer in der Tabelle %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Anzeigen" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Treffer für Tabelle %s löschen?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Löschen" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Insgesamt %s Treffer" msgstr[1] "Insgesamt %s Treffer" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s Treffer in der Tabelle %2$s" +msgstr[1] "%1$s Treffer in der Tabelle %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Anzeigen" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Treffer für Tabelle %s löschen?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Löschen" + +#: db_search.php:362 msgid "Search in database" msgstr "Durchsuche die Datenbank" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Finde:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "In der/den Tabelle(n):" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "In Spalte:" @@ -609,8 +612,8 @@ msgstr "Tracking ist nicht aktiviert." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " "die %sDokumentation%s." @@ -620,7 +623,7 @@ msgstr "" msgid "View" msgstr "Ansicht" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -630,93 +633,89 @@ msgstr "Replikation" msgid "Sum" msgstr "Gesamt" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s ist die Standard Storage-Engine dieses MySQL-Servers." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "markierte:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Alle auswählen" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Auswahl entfernen" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Tabellen mit Überhang auswählen" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportieren" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Leeren" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Löschen" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Überprüfe Tabelle" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimiere Tabelle" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Repariere Tabelle" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analysiere Tabelle" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Prefix der Tabelle voranstellen" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Tabellenprefix ersetzen" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Tabelle mit Prefix kopieren" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Strukturverzeichnis" @@ -729,9 +728,9 @@ msgstr "Verfolgte Tabellen" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Datenbank" @@ -748,17 +747,17 @@ msgstr "Erstellt" msgid "Updated" msgstr "Aktualisiert" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Aktion" @@ -790,7 +789,7 @@ msgstr "Struktur Schnapschuss" msgid "Untracked tables" msgstr "Nicht verfolgte Tabellen" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Verfolge Tabelle" @@ -933,11 +932,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " -"%sDokumentation%s zur Lösung diese Problems." +"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %" +"sDokumentation%s zur Lösung diese Problems." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1016,13 +1015,13 @@ msgstr "" "nicht die Ausführungszeitbeschränkungen von php gelockert werden." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Zurück" @@ -1106,8 +1105,8 @@ msgstr "Es wurde kein Passwort angegeben!" msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Benutzer hinzufügen" @@ -1122,10 +1121,10 @@ msgstr "Die ausgewählten Benutzer werden gelöscht" #: js/messages.php:58 js/messages.php:137 tbl_tracking.php:281 #: tbl_tracking.php:473 msgid "Close" -msgstr "Schliessen" +msgstr "Schließen" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1152,13 +1151,13 @@ msgstr "Statische Daten" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Insgesamt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Weitere" @@ -1188,7 +1187,7 @@ msgstr "Server-Datenverkehr (in KiB)" msgid "Connections since last refresh" msgstr "Verbindungen seit der letzten Aktualisierung" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Prozesse" @@ -1253,13 +1252,13 @@ msgstr "Auslagerungsspeicher" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1311,7 +1310,7 @@ msgstr "Bytes gesendet" msgid "Bytes received" msgstr "Bytes empfangen" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Verbindungen" @@ -1350,11 +1349,11 @@ msgstr "%d Tabelle(n)" msgid "Questions" msgstr "Anfragen" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Netzwerkverkehr" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Einstellungen" @@ -1377,8 +1376,8 @@ msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "keine" @@ -1478,7 +1477,7 @@ msgstr "Einstellungen ändern" msgid "Current settings" msgstr "Aktuelle Einstellungen" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Schaubild-Titel" @@ -1566,7 +1565,7 @@ msgstr "Ausgabe erklären" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Zeit" @@ -1661,10 +1660,10 @@ msgstr "" "Aufbau der Diagramme mit der importierten Konfiguration ist fehlgeschlagen. " "Setze auf Standardeinstellungen zurück..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importieren" @@ -1712,9 +1711,9 @@ msgstr "Benutzte Variable/Formel" msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Abbrechen" @@ -1742,9 +1741,9 @@ msgstr "Spalte wird gelöscht" msgid "Adding Primary Key" msgstr "Primärschlüssel wird hinzugefügt" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1822,7 +1821,7 @@ msgstr "" "Die Definition einer gespeicherten Prozedur muss ein RETURN-Statement " "beinhalten!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET Editor" @@ -1863,8 +1862,8 @@ msgstr "SQL-Querybox anzeigen" msgid "No rows selected" msgstr "Es wurden keine Datensätze ausgewählt" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Bearbeiten" @@ -1879,7 +1878,7 @@ msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2391,16 +2390,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Unerwartetes Zeichen in Zeile %1$s. Tab erwartet, aber \"%2$s\" gefunden" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "pro Sekunde" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "pro Minute" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "pro Stunde" @@ -2501,8 +2500,8 @@ msgstr "Nach Schlüssel sortieren" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Optionen" @@ -2555,7 +2554,7 @@ msgid "The row has been deleted" msgstr "Der Datensatz wurde gelöscht" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Beenden" @@ -2586,27 +2585,27 @@ msgstr "insgesamt" msgid "Query took %01.4f sec" msgstr "Die Abfrage dauerte %01.4f Sekunden" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Diagramm anzeigen" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Visualisiere GIS Daten" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Erzeuge View" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden" @@ -2681,46 +2680,46 @@ msgstr "Ab diesem Punkt müssen Cookies aktiviert sein." msgid "Javascript must be enabled past this point" msgstr "Javascript muss ab hier aktiviert sein" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Kein Index definiert!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indizes" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Gepackt" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalität" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Der Primärschlüssel wurde gelöscht" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Index %s wurde entfernt" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2729,9 +2728,9 @@ msgstr "" "Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte " "möglicherweise entfernt werden." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Datenbanken" @@ -2741,7 +2740,7 @@ msgstr "Datenbanken" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2754,102 +2753,102 @@ msgstr "Server" msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Einfügen" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operationen" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Nachverfolgung" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Trigger" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Die Tabelle scheint leer zu sein!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Die Datenbank scheint leer zu sein!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Abfrage" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Rechte" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routinen" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Ereignisse" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Benutzer" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Gleiche ab" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binäres Protokoll" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variablen" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Zeichensätze" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Erweiterungen" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Formate" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fehler" @@ -2891,64 +2890,64 @@ msgstr "Letzte Tabellen" msgid "There are no recent tables" msgstr "Es gibt keine letzten Tabellen" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s ist auf diesem MySQL-Server verfügbar." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s wurde auf diesem MySQL-Server deaktiviert." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "Unbekannter Tabellenstatus: " # source != search / Source != Suche -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Quell-Datenbank `%s` nicht gefunden!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Ziel-Datenbank `%s` nicht gefunden!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Ungültige Datenbank" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Ungültiger Tabellenname" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelle %1$s wurde in %2$s umbenannt." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Konnte die UI Einstellungen der Tabelle nicht speichern" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2957,7 +2956,7 @@ msgstr "" "Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2968,22 +2967,22 @@ msgstr "" "Änderungen werden nicht dauerhaft sein wenn Sie diese Seite aktualisieren. " "Bitte überprüfen Sie, ob die Struktur der Tabelle geändert wurde." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funktion" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Wert" @@ -2991,7 +2990,7 @@ msgstr "Wert" msgid "Table Search" msgstr "Tabellensuche" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Bearbeiten/Einfügen" @@ -3132,20 +3131,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis " -"-1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38" +"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis -" +"1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind " -"-1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und " +"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind -" +"1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und " "2,2250738585072014E-308 bis 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3185,8 +3184,8 @@ msgstr "Ein Datum, unterstützter Bereich ist %1$s bis %2$s" #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis " -"%2$s" +"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis %2" +"$s" #: libraries/Types.class.php:323 msgid "" @@ -3448,8 +3447,8 @@ msgstr "Willkommen bei %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Sie haben möglicherweise noch keine Konfigurationsdatei erstellt. Sei können " "das %1$sSetup-Skript%2$s verwenden, um eine zu erstellen." @@ -3568,12 +3567,12 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Daten" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Überhang" @@ -3686,18 +3685,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "de" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-Befehl" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3786,7 +3785,7 @@ msgstr "" msgid "Click to toggle" msgstr "Zum Umschalten anklicken" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Durchsuchen Sie ihren Computer:" @@ -3796,8 +3795,8 @@ msgstr "Durchsuchen Sie ihren Computer:" msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden" @@ -3981,7 +3980,7 @@ msgstr "Voreingestellten Wert wiederherstellen" msgid "Allow users to customize this value" msgstr "Erlaube den Benutzern diesen Wert anzupassen" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4274,7 +4273,7 @@ msgid "Character set of the file" msgstr "Zeichensatz der Datei" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4573,7 +4572,7 @@ msgstr "Navigationsframe" msgid "Customize appearance of the navigation frame" msgstr "Aussehen der Navigation anpassen" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Server" @@ -5924,7 +5923,7 @@ msgid "" msgstr "" "Definiert, ob das Abfragefeld nach dem Absenden geöffnet bleiben sollte" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Abfragefeld weiterhin anzeigen" @@ -6259,7 +6258,7 @@ msgstr "Die Erweiterung %s fehlt. Bitte die PHP Konfiguration überprüfen." msgid "possible deep recursion attack" msgstr "möglicher Deep-Recursion-Angriff" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6267,17 +6266,17 @@ msgstr "" "Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers " "nicht korrekt konfiguriert)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Der Server antwortet nicht." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" "Bitte prüfen Sie die Rechte des Verzeichnisses, in dem sich die Datenbank " "befindet." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Details..." @@ -6334,8 +6333,8 @@ msgstr "Erzeuge Tabelle" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Name" @@ -6437,8 +6436,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt" #, 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 "" "Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter " "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " @@ -6450,7 +6449,7 @@ msgid "use this for future exports" msgstr "Diese Einstellungen auch für zukünftige Exporte verwenden" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Zeichencodierung der Datei:" @@ -6970,8 +6969,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." @@ -7033,7 +7032,7 @@ msgstr "Ereignis" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Beschreibung" @@ -7094,7 +7093,7 @@ msgstr "MIME-Typen anzeigen" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7314,8 +7313,8 @@ msgstr "Export-Inhalte" msgid "No data found for GIS visualization." msgstr "Keine Daten für die GIS-Darstellung gefunden." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." @@ -7499,77 +7498,77 @@ msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT nicht für Nullwerte verwenden" # Hide heist im deutschen in der EDV ausblenden -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Verstecken" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binär" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Wegen seiner Länge ist dieses
    Feld vielleicht nicht editierbar" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binär - nicht editierbar" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "Upload-Verzeichnis auf dem Webserver" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Einfügen mit %s Datensätzen fortfahren" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "und dann" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "zurück" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten " "beliebig bewegen" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" @@ -7593,7 +7592,7 @@ msgid "To" msgstr "Zu" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Abschicken" @@ -7609,7 +7608,7 @@ msgstr "Prefix hinzufügen" msgid "Do you really want to execute the following query?" msgstr "Möchten Sie die folgende Abfrage wirklich ausführen?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Keine Änderung" @@ -7861,7 +7860,7 @@ msgstr "" "Bitte lesen Sie in der Dokumentation nach, wie Sie die Struktur Ihrer " "Spaltenkommentartabelle aktualisieren können" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Gespeicherte SQL-Abfrage" @@ -7914,6 +7913,10 @@ msgstr "" msgid "no description" msgstr "keine Beschreibung" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Auswahl entfernen" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Slave-Konfiguration" @@ -7951,8 +7954,8 @@ msgstr "Master-Status" msgid "Slave status" msgstr "Slave-Status" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -7979,7 +7982,7 @@ msgstr "Jeder Benutzer" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Textfeld verwenden" @@ -8012,10 +8015,10 @@ msgid "Generate Password" msgstr "Passwort generieren" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8026,7 +8029,7 @@ msgstr "Die folgende Abfrage ist fehlgeschlagen: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Das wiederherstellen des gelöschten Ereignisses schlug fehl." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Die gesicherte Abfrage war:" @@ -8041,7 +8044,7 @@ msgstr "Ereignis %1$s wurde geändert." msgid "Event %1$s has been created." msgstr "Ereignis %1$s wurde erzeugt." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8052,14 +8055,14 @@ msgstr "" msgid "Edit event" msgstr "Event bearbeiten" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fehler beim Bearbeiten der Anfrage" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Details" @@ -8072,7 +8075,7 @@ msgstr "Ereignis-Name" msgid "Event type" msgstr "Ereignistyp" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Wechseln zu %s" @@ -8099,13 +8102,13 @@ msgstr "Ende" msgid "On completion preserve" msgstr "Nach Abschluss erhalten" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Ersteller" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein" @@ -8130,7 +8133,7 @@ msgstr "Sie müssen einen gültigen Typ für dieses Event angeben." msgid "You must provide an event definition." msgstr "Sie müssen die Definition des Ereignisses angeben." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Neu" @@ -8150,7 +8153,7 @@ msgstr "Ereignis-Planer-Statistiken" msgid "Returns" msgstr "Rückgabe-Wert" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8163,89 +8166,89 @@ msgstr "" "strong] Bitte verwenden Sie die neuere 'mysqli'-Erweiterung, um Probleme zu " "vermeiden." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ungültiger Prozeduren-Typ: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Das wiederherstellen der gelöschten Prozedur schlug fehl." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Prozedur %1$s wurde geändert." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Die Prozedur %1$s wurde erstellt." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Bearbeite Prozedur" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Prozeduren-Name" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parameter" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Richtung" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Länge/Werte" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Parameter hinzufügen" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Letzten Parameter entfernen" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Rückgabe-Typ" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Rückgabe Länge/Werte" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Rückgabe der Optionen" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Ist plangesteuert" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Sicherheits-Typ" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL-Datenzugriff" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Sie müssen einen Prozeduren-Namen angeben" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ungültige Richtung \"%s\" für Parameter angegeben." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8253,21 +8256,21 @@ msgstr "" "Sie müssen Länge/Werte Angaben für Prozeduren Parameter des Typs ENUM, SET, " "VARCHAR und VARBINARY angeben." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" "Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" "Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Sie müssen die Definition der Prozedur angeben." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8276,18 +8279,18 @@ msgstr[0] "" msgstr[1] "" "%d Datensätze betroffen aufgrund des letzten Befehls innerhalb der Prozedur" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Ergebnisse der ausgeführten Prozedur %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Führe Prozedur aus" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Prozeduren-Parameter" @@ -8574,7 +8577,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Unbekannte Sprache: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Aktueller Server" @@ -8606,50 +8609,50 @@ msgstr "Ziel-Datenbank" msgid "Click to select" msgstr "Zur Auswahl anklicken" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Werte löschen" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Spalten" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 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:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Überschreibe gleichnamiges Bookmark" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Begrenzer" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Diese Abfrage hier wieder anzeigen" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Nur zeigen" @@ -8755,7 +8758,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Index" @@ -8806,12 +8809,12 @@ msgid "As defined:" msgstr "Wie definiert:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primärschlüssel" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Volltext" @@ -8824,12 +8827,12 @@ msgstr "an den Anfang" msgid "after %s" msgstr "nach %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "%s Spalte(n) einfügen" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Sie müssen mindestens eine Spalte hinzufügen." @@ -8886,7 +8889,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Einen Link zum Bild anzeigen, z. B. zum Download von BLOB-Daten." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9070,8 +9073,8 @@ msgid "Protocol version" msgstr "Protokoll-Version" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Benutzer" @@ -9209,15 +9212,15 @@ msgstr "" "Der Server läuft mit Suhosin. Bitte lesen Sie die %sDokumentation%s wegen " "möglicher Probleme." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Keine Datenbanken" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "Datenbanken nach Namen filtern" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Tabellen nach Namen filtern" @@ -9238,7 +9241,7 @@ msgstr "Zeige/Verstecke linkes Menü" msgid "Save position" msgstr "Speichere Position" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Erzeuge Verknüpfung" @@ -9298,37 +9301,37 @@ msgstr "Tabellen ohne Verknüpfung aus-/einblenden" msgid "Number of tables" msgstr "Anzahl Tabellen" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Verknüpfung löschen" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Beziehungsoperator" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Ausnahme" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "Unterabfrage" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Umbenennen nach" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Neuer Name" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Anlegen" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Aktive Optionen" @@ -9494,13 +9497,13 @@ msgstr "Binäres Protokoll zur Anzeige auswählen" msgid "Files" msgstr "Dateien" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Zeige die SQL-Abfragen verkürzt an" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" @@ -9516,7 +9519,7 @@ msgstr "Position" msgid "Original position" msgstr "Ursprungsposition" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Information" @@ -9544,11 +9547,11 @@ msgstr "Master Replikation" msgid "Slave replication" msgstr "Slave Replikation" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Datenbankstatistiken aktivieren" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9804,7 +9807,7 @@ msgid "None" msgstr "Kein(e)" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" @@ -9821,7 +9824,7 @@ msgstr "Administration" msgid "Global privileges" msgstr "Globale Rechte" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" @@ -9841,7 +9844,7 @@ msgstr "Anmelde-Informationen" msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." @@ -9890,7 +9893,7 @@ msgstr "Die gewählten Benutzer wurden gelöscht." msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Rechte ändern" @@ -9903,7 +9906,7 @@ msgid "Export all" msgstr "Alle exportieren" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Jeder" @@ -9920,33 +9923,33 @@ msgstr "Rechte für %s" msgid "Users overview" msgstr "Benutzerübersicht" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Die ausgewählten Benutzer löschen" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Den Benutzern alle Rechte entziehen und sie anschließend aus den " "Benutzertabellen löschen." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 "" "Hinweis: phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden " "MySQL-Tabellen aus. Der Inhalt dieser Tabellen kann sich von den " @@ -9954,92 +9957,92 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall sollten Sie %sdie " "Benutzerprofile neu laden%s bevor Sie fortfahren." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Spaltenspezifische Rechte" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Rechte zu folgender Datenbank hinzufügen" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Platzhalter _ und % sollten mit einem \\ escaped werden, um das gewünschte " "Sonderzeichen einzubinden" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Rechte zu folgender Tabelle hinzufügen" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Anmelde-Information ändern/Benutzer kopieren" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... behalte den alten bei." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... lösche den alten von den Benutzertabellen." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... entziehe dem alten alle Rechte und lösche ihn anschließend." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... lösche den alten und lade anschließend die Benutzertabellen neu." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Datenbank für Benutzer" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen " "(username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gewähre alle Rechte auf die Datenbank "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Benutzer mit Zugriff auf "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "datenbankspezifisch" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "Platzhalter" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Benutzer wurde hinzugefügt." @@ -10330,23 +10333,23 @@ msgstr "Zeige nur Warn-Werte" msgid "Filter by category..." msgstr "Nach Kategorie filtern..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Zeige unformatierte Werte" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Verwandte Links:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Analyse durchführen" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Einführung" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10354,7 +10357,7 @@ msgstr "" "Der Ratgeber kann Empfehlungen zu Server-Variablen durch Analyse der Server-" "Status-Variablen geben." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10364,7 +10367,7 @@ msgstr "" "Berechnungen und Faustregeln basieren und nicht umbedingt auf Ihrem System " "funktionieren müssen." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10374,7 +10377,7 @@ msgstr "" "was Sie ändern und wie Sie die Änderungen rückgängig machen können. Falsche " "Optimierungen können sehr negative Effekte hervorrufen." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10385,31 +10388,31 @@ msgstr "" "Änderungen zurückzunehmen, falls es keine klar messbaren Verbesserungen gab." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Verbindungen seit Start: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Angaben" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Netzwerk-Datenverkehr seit Start: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Dieser MySQL-Server läuft bereits %1$s. Er wurde um %2$s gestartet." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10417,18 +10420,18 @@ msgstr "" "Dieser MySQL Server arbeitet als Master und Slave im " "Replikations-Prozess." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Dieser MySQL Server arbeitet als Master im Replikations-" "Prozess." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10436,11 +10439,11 @@ msgstr "" "Für weitere Informationen über den Replikations-Status auf dem Server siehe " "Abschnitt Replikation." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Replikations-Status" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10449,35 +10452,35 @@ msgstr "" "wieder bei 0 beginnen, deshalb können diese Werte, wie sie vom MySQL Server " "ausgegeben werden, falsch sein." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Empfangen" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Gesendet" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "max. gleichzeitige Verbindungen" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Fehlversuche" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Abgebrochen" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Befehl" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10485,12 +10488,12 @@ msgstr "" "Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen " "Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Die maximale Nummer an Fehlversuchen um zu einem MySQL-Server zu verbinden." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10501,20 +10504,20 @@ msgstr "" "und eine temporäre Datei verwendet haben um die Statements der Transaktion " "zu speichern." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Anzahl der Transaktionen, die den temporären Binarylog-Zwischenspeicher " "verwendet haben." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Die Anzahl an Verbindungsversuchen (ob erfolgreich odernicht) zum MySQL-" "Server." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10526,11 +10529,11 @@ msgstr "" "Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre " "Tabellen im Speicher erzeugt werden statt auf der Festplatte." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10538,7 +10541,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10546,7 +10549,7 @@ msgstr "" "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden, und bei " "denen ein Fehler auftrat (z. B. duplicate key)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10554,23 +10557,23 @@ msgstr "" "Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne " "Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Anzahl der Datensätze, die aus Tabellen gelöscht wurden." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10580,7 +10583,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird "discovery" genannt." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10591,7 +10594,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10600,7 +10603,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10611,7 +10614,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10620,7 +10623,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10633,7 +10636,7 @@ msgstr "" "haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen " "zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10646,36 +10649,36 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Anzahl der als "dirty" markierten Seiten." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Anzahl der Seiten im Puffer-Pool, die zurückgeschrieben werden müssen." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10685,7 +10688,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10697,11 +10700,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10709,7 +10712,7 @@ msgstr "" "Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage " "einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10717,11 +10720,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10729,7 +10732,7 @@ msgstr "" "Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen " "konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10744,53 +10747,53 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Anzahl der ausgeführten doublewrite Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "Anzahl der ausgeführten doublewrite Zugriffe." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10798,35 +10801,35 @@ msgstr "" "Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein " "war und deshalb gewartet wurde das er geleert wird." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Anstehende fsyncs für die Protokoll-Datei." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10835,55 +10838,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Durchschnittliche Wartezeite um eine Datensatz-Sperre zu bekommen, in " "Millisekunden." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Summe aller Wartezeiten um Datensatz-Sperren zu bekommen, in Millisekunden." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Längste Wartezeite um eine Datensatz-Sperre zu bekommen, in Millisekunden." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Wie oft auf ein Datensatz-Sperre gewartet werden musste." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10892,7 +10895,7 @@ msgstr "" "noch nicht auf die Platte zurück geschrieben (flush) wurden; auch bekannt " "als Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10901,7 +10904,7 @@ msgstr "" "Dieser Wert kann dazu dienen die Auslastung des Schlüssel-Zwischenspeicher " "zu bestimmen." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10910,18 +10913,18 @@ msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-" "Zwischenspeicher." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" "Prozentsatz des benutzten Schlüssel-Zwischenspeichers (berechneter Wert)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Zwischenspeicher zu " "lesen." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10932,7 +10935,7 @@ msgstr "" "Die Zwischenspeicher-Zugriffsrate kann mit key_reads/key_read_requests " "berechnet werden." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10940,25 +10943,25 @@ msgstr "" "Schlüssel-Zwischenspeicher Fehlberechnung als Verhältnis zwischen " "physikalischen Lese-Operationen und Lese-Anfragen (berechneter Wert)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block in den Zwischenspeicher zu " "schreiben." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" "Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Prozentsatz der physikalischen Schreib-Operationen im Vergleich zu Schreib-" "Anfragen (berechneter Wert)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10968,7 +10971,7 @@ msgstr "" "berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " "vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10976,13 +10979,13 @@ msgstr "" "Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig " "benutzt wurden." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Anzahl der Datensätze, die in INSERT-DELAYED-Warteschleifen darauf warten, " "geschrieben zu werden." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10990,20 +10993,20 @@ msgstr "" "Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " "Ihre table_cache-Variable wahrscheinlich zu niedrig." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Anzahl der geöffneten Streams (hauptsächlich zum Protokollieren benutzt)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11013,19 +11016,19 @@ msgstr "" "Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY " "CACHE - Abfrage beseitigt werden können." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Zwischenspeicher." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Anzahl an Abfrage-Zwischenspeicher-Anfragetreffer." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Zwischenspeicher hinzugefügt wurden." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11039,7 +11042,7 @@ msgstr "" "stets die Abfrage gelöscht, die am längsten unbenutzt im Zwischenspeicher " "lag." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11047,19 +11050,19 @@ msgstr "" "Die Anzahl der nicht im Zwischenspeicher eingetragenen Abfragen (nicht " "möglich, oder aufgrund der query_cache_type Einstellung)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Zwischenspeicher." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Zwischenspeicher." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11067,13 +11070,13 @@ msgstr "" "Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Anzahl der Joins, bei denen eine Bereichssuche auf die Referenztabelle statt " "fand." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11082,7 +11085,7 @@ msgstr "" "Schlüsselbenutzung geprüft wurde. (Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11090,16 +11093,16 @@ msgstr "" "Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. " "(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Anzahl der Joins, bei denen die erste Tabelle gescannt wurde." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Anzahl der temporären Tabellen, die momentan vom Slave-Prozess geöffnet sind." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11107,13 +11110,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dieser Wert steht auf ON wenn dieser Server ein Slave ist und mit dem Master " "verbunden ist." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11121,12 +11124,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Anzahl der Anfragen, die länger als long_query_time benötigten." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11136,25 +11139,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Datensätze." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" "Anzahl der Sortiervorgänge, die durchgeführt wurden, indem die Tabelle " "gescannt wurde." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11166,7 +11169,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" "(n) zerteilen oder Replikation benutzen." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11176,11 +11179,11 @@ msgstr "" "Zugriffsrate kann mit Threads_created/Connections berechnet werden. Wenn " "dieser Wert rot ist, sollte der thread_cache_size erhöht werden." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11192,47 +11195,47 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Prozess-Zwischenspeicher Erfolgsrate (berechneter Wert)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Überwachung starten" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Einführung/Einrichtung" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Umordnen/bearbeiten der Schaubilder beendet" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Schaubild hinzufügen" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Schaubilder umordnen/bearbeiten" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Aktualisierungs-Intervall" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Schaubild-Spalten" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Schaubild-Anordnung" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11241,15 +11244,15 @@ msgstr "" "Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " "eingerichtet haben." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Zurücksetzen" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Einführung zur Überwachung" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11264,7 +11267,7 @@ msgstr "" "general_log viele Daten produzieren und die Serverauslastung um bis zu 15% " "erhöhen kann." -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11276,11 +11279,11 @@ msgstr "" "mit PhpMyAdmin. Protokollierung in eine Tabelle wird von MySQL 5.1.6 und " "höher unterstützt. Sie können dennoch die Server Diagramm-Funktionen nutzen." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Verwendung der Überwachung:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11291,7 +11294,7 @@ msgstr "" "Aktualisierungsintervall ändern oder beliebige Diagramme entfernen, wenn Sie " "das Zahnrad-Icon des entsprechenden Schaubilds verwenden." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11304,11 +11307,11 @@ msgstr "" "gruppierten Abfragen geladen. Sie können auf jedes SELECT Anweisung klicken, " "um diese weiter zu analysieren." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Bitte beachten Sie:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11320,89 +11323,89 @@ msgstr "" "aufwändiger Prozess ist. Deshalb ist es ratsam, nur einen kleinen Zeitraum " "auszuwählen und die gerneral_log nach der Überwachung wieder zu deaktivieren." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Vordefiniertes Diagramm" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Status Variable(n)" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Serie auswählen:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Allgemein-überwacht" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "oder Variablen-Namen eingeben:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Den Wert als Unterschied zeigen" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Divisor hinzufügen" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Einheiten an Datenwerte anfügen" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Diese Serie hinzufügen" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Serien löschen" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Serien im Schaubild:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Protokoll Statistik" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Ausgewählte Zeit-Spanne:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Lösche Variablen-Werte in INSERT Abfragen um die Gruppierung zu verbessern" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" "Bitte wählen Sie das Protokoll aus, von dem Statistiken generiert werden " "sollen." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Ergebnisse sind nach Abfrage-Text zusammengefasst." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Query Analyzer" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d Sekunde" msgstr[1] "%d Sekunden" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11832,8 +11835,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:314 #, php-format @@ -12191,35 +12194,35 @@ msgstr "Prüfe referentielle Integrität:" msgid "Showing tables" msgstr "Tabellen anzeigen" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Speicherplatzverbrauch" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Datensatz-Statistiken" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statisch" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamisch" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Zeilenlänge" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Zeilengröße" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Nächster Autoindex" @@ -12246,7 +12249,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Beschränkung für auswärtige Schlüssel" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Räumlich" @@ -12296,49 +12299,49 @@ msgstr "Ein Index wurde in %s erzeugt" msgid "Show more actions" msgstr "Weitere Aktionen anzeigen" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Spalten verschieben" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Verschieben Sie die Spalten, indem Sie sie nach oben und unten ziehen." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "View/Ansicht bearbeiten" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Beziehungsübersicht" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Tabellenstruktur analysieren" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Spalte hinzufügen" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "An das Ende der Tabelle" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "An den Anfang der Tabelle" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Nach %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Index über %s Spalten anlegen" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partitioniert" @@ -12878,8 +12881,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Das aktuelle Verhältnis von freiem Abfrage-Zwischenspeicher zur Größe des " "gesamten Abfrage-Zwischenspeichers ist %s%%. Es sollte über 80%% betragen" @@ -13036,8 +13039,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% aller Sortierungen verursachen temporäre Tabellen, dieser Wert sollte " "kleiner als 10%% sein." @@ -14235,8 +14238,8 @@ msgstr "concurrent_insert ist auf 0 gesetzt" #~ "directory %s." #~ msgstr "" #~ "Die Unterstützung für Oberflächendesigns ist deaktiviert. Bitte " -#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis " -#~ "%s." +#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis %" +#~ "s." #~ msgid "The following queries have been executed:" #~ msgstr "Die folgenden Abfragen wurden ausgeführt:" diff --git a/po/el.po b/po/el.po index 755f12df62..c77bf534bc 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-03-22 09:27+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: Weblate 0.8\n" @@ -38,53 +38,54 @@ msgstr "" "κλείσατε το μητρικό παράθυρο ή ο φυλλομετρητής σας δεν επιτρέπει τις " "ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Αναζήτηση" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Εκτέλεση" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Όνομα κλειδιού" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Περιγραφή" @@ -117,13 +118,13 @@ msgstr "Σχόλιο βάσης: " msgid "Table comments" msgstr "Σχόλια πίνακα" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Σχόλια πίνακα" msgid "Column" msgstr "Στήλη" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Τύπος" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Σύνδεση με" msgid "Comments" msgstr "Σχόλια" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Σχόλια" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Όχι" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Όχι" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Εμφάνιση σκαριφήματος (σχήματος) της βά msgid "No tables found in database." msgstr "Δεν βρέθηκαν πίνακες στη βάση δεδομένων." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Επιλογή όλων" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Αποεπιλογή όλων" @@ -323,12 +324,12 @@ msgstr "Προσθήκη περιορισμών" msgid "Switch to copied database" msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Σύνθεση" @@ -351,17 +352,17 @@ msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματ #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Πίνακας" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Εγγραφές" @@ -376,21 +377,21 @@ msgstr "σε χρήση" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Δημιουργία" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Τελευταία ενημέρωση" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Tελευταίος έλεγχος" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Διαγραφή" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ενωση" @@ -494,85 +495,87 @@ msgstr "Υποβολή ερωτήματος" msgid "Access denied" msgstr "Άρνηση πρόσβασης" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "τουλάχιστον έναν από τους όρους" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "όλους τους όρους" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "την ακριβή φράση" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "ως κανονική έκφραση" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Αποτελέσματα αναζήτησης για «%s» %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s απατέλεσμα στον πίνακα %2$s" -msgstr[1] "%1$s αποτελέσματα στον πίνακα %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Περιήγηση" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Διαγραφή" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Σύνολο: %s αποτέλεσμα" msgstr[1] "Σύνολο: %s αποτελέσματα" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s απατέλεσμα στον πίνακα %2$s" +msgstr[1] "%1$s αποτελέσματα στον πίνακα %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Περιήγηση" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Διαγραφή" + +#: db_search.php:362 msgid "Search in database" msgstr "Αναζήτηση στη βάση δεδπμένων" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Λέξεις ή τιμές για αναζήτηση (μπαλαντέρ: «%»):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Έυρεση:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Μέσα στους πίνακες:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Εσωτερικό πεδίο:" @@ -611,18 +614,18 @@ msgstr "Η παρακολούθηση δεν είναι ενεργοποιημέ #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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." +"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" +"sτεκμηρίωση%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Προβολή" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -632,94 +635,90 @@ msgstr "Αναπαραγωγή" msgid "Sum" msgstr "Σύνολο" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Επιλογή όλων" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Απεπιλογή όλων" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Εξαγωγή" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Άδειασμα" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Διαγραφή" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Έλεγχος πίνακα" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Βελτιστοποίηση πίνακα" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Επιδιόρθωση πίνακα" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Ανάλυση πίνακα" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Προσθήκη προθέματος στον πίνακα" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Αντικατάσταση προθέματος πίνακα" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Αντιγραφή πίνακα με πρόθεμα" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Περιληπτικός πίνακας δεδομένων" @@ -732,9 +731,9 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Βάση" @@ -751,17 +750,17 @@ msgstr "Δημιουργήθηκε" msgid "Updated" msgstr "Ενημερώθηκε" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Κατάσταση" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Ενέργεια" @@ -793,7 +792,7 @@ msgstr "Στιγμιότυπο δομής" msgid "Untracked tables" msgstr "Μη παρακολουθούμενοι πίνακες" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Παρακολούθηση πίνακα" @@ -930,11 +929,11 @@ msgstr "" #: import.php:86 #, 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 για τρόπους αντιμετώπισης αυτού του περιορισμού." +"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" +"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1011,13 +1010,13 @@ msgstr "" "και αν αυξήσετε τα χρονικά όρια της php." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Επιστροφή" @@ -1104,8 +1103,8 @@ msgstr "Ο κωδικός πρόσβασης είναι κενός!" msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Προσθήκη χρήστη" @@ -1123,7 +1122,7 @@ msgid "Close" msgstr "Κλείσιμο" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1150,13 +1149,13 @@ msgstr "Στατικά δεδομένα" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Σύνολο" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Άλλα" @@ -1186,7 +1185,7 @@ msgstr "Κυκλοφορία Διακομιστή (σε KB)" msgid "Connections since last refresh" msgstr "Συνδέσεις από την τελευταία ανανέωση" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Διεργασίες" @@ -1250,13 +1249,13 @@ msgstr "Αδράνεια συστήματος" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1308,7 +1307,7 @@ msgstr "Σταλθέντα Bytes" msgid "Bytes received" msgstr "Ληφθέντα Bytes" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Συνδέσεις" @@ -1347,11 +1346,11 @@ msgstr "%d πίνακας(ες)" msgid "Questions" msgstr "Ερωτήσεις" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Κίνηση" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1374,8 +1373,8 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Καμία" @@ -1477,7 +1476,7 @@ msgstr "Αλλαγή ρυθμίσεων" msgid "Current settings" msgstr "Τρέχουσες ρυθμίσεις" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Τίτλος Διαγράμματος" @@ -1568,7 +1567,7 @@ msgstr "Επεξήγηση προϊόντος" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Χρόνος" @@ -1668,10 +1667,10 @@ msgstr "" "Απέτυχε η δημιουργία καννάβου διαγράμματος με την εισαγωγή ρυθμίσεων. " "Επαναφορά στην προεπιλεγμένη ρύθμιση..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Εισαγωγή" @@ -1723,9 +1722,9 @@ msgstr "Χρησιμοποιημένη μεταβλητή / τύπος" msgid "Test" msgstr "Έλεγχος" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Άκυρο" @@ -1753,9 +1752,9 @@ msgstr "Διαγραφή Στήλης" msgid "Adding Primary Key" msgstr "Προσθήκη Πρωτεύοντος Κλειδιού" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Εντάξει" @@ -1838,7 +1837,7 @@ msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ο ορισμός μιας αποθηκευμένης συνάρτησης πρέπει να περιέχει μια δήλωση RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Επεξεργαστής ENUM/SET" @@ -1877,8 +1876,8 @@ msgstr "Προβολή παραθύρου ερωτήματος" msgid "No rows selected" msgstr "Δεν επιλέχθηκαν γραμμές" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Αλλαγή" @@ -1893,7 +1892,7 @@ msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2408,16 +2407,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "ανά δευτερόλεπτο" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "ανά λεπτό" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "ανά ώρα" @@ -2519,8 +2518,8 @@ msgstr "Ταξινόμηση ανά κλειδί" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Επιλογές" @@ -2573,7 +2572,7 @@ msgid "The row has been deleted" msgstr "Η εγγραφή έχει διαγραφεί" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Τερματισμός" @@ -2602,27 +2601,27 @@ msgstr "συνολικά" msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Εμφάνιση διαγράμματος" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Οπτικοποίηση δεδομένων GIS" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Δημιουργία προβολής" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" @@ -2699,46 +2698,46 @@ msgstr "Από αυτό το σημείο πρέπει να έχετε ενερ msgid "Javascript must be enabled past this point" msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Δεν ορίστηκε ευρετήριο!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Ευρετήρια" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Μοναδικό" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Συμπιεσμένο" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Μοναδικότητα" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Σχόλιο" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Το πρωτεύον κλειδί διεγράφη" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Το ευρετήριο %s διεγράφη" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2747,9 +2746,9 @@ msgstr "" "Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " "απομακρυνθεί." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Βάσεις δεδομένων" @@ -2759,7 +2758,7 @@ msgstr "Βάσεις δεδομένων" msgid "Server" msgstr "Διακομιστής" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2772,102 +2771,102 @@ msgstr "Διακομιστής" msgid "Structure" msgstr "Δομή" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Προσθήκη" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Παρακολούθηση" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Δείκτες" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Ο πίνακας φαίνεται να είναι άδειος!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Δικαιώματα" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Εργασίες" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Συμβάντα" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Χρήστες" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Συγχρονισμός" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Μεταβλητές" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Σύνολο χαρακτήρων" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Πρόσθετα" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Μηχανές" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Λάθος" @@ -2909,67 +2908,67 @@ msgstr "Πρόσφατοι πίνακες" msgid "There are no recent tables" msgstr "Δεν υπάρχουν πρόσφατοι πίνακες" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Δεν υπάρχουν λεπτομερείς πληροφορίες κατάστασης για αυτή τη μηχανή " "αποθήκευσης." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "Η %s είναι διαθέσιμη σε αυτό το διακομιστή MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το διακομιστή MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "άγνωστη κατάσταση πίνακα: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Βάση δεδομένων προέλευσης" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Το θέμα %s δεν βρέθηκε!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Μη έγκυρη βάση δεδομένων" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Μη έγκυρο όνομα πίνακα" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Ο πίνακας %1$s μετονομάσθηκε σε %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Αδύνατη η αποθήκευση του πίανακα ρυθμίσεων UI" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2978,7 +2977,7 @@ msgstr "" "Αδύνατη η εκκαθάριση του πίνακα προτιμήσεων του περιβάλλοντος εργασίας " "(δείτε το $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2989,22 +2988,22 @@ msgstr "" "παραμείνουν μετά την ανανέωση της σελίδας. Ελέξτε αν η δομή πίνακα έχει " "αλλαχτεί." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Συνάρτηση" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Τελεστής" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Τιμή" @@ -3012,7 +3011,7 @@ msgstr "Τιμή" msgid "Table Search" msgstr "Αναζήτηση Πίνακα" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Επεξεργασία/Προσθήκη" @@ -3142,14 +3141,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3409,8 +3408,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/auth/config.auth.lib.php:98 #, 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κώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." @@ -3530,12 +3529,12 @@ msgstr "Πίνακες" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Δεδομένα" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Περίσσεια" @@ -3652,18 +3651,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Εντολή SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3752,7 +3751,7 @@ msgstr "" msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" @@ -3762,8 +3761,8 @@ msgstr "Περιηγηθείτε στον υπολογιστή σας:" msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" @@ -3951,7 +3950,7 @@ msgstr "Επαναφορά προεπιλεγμένης τιμής" msgid "Allow users to customize this value" msgstr "Επιτρέπεται στους χρήστες να προσαρμόσουν αυτή την τιμή" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4241,7 +4240,7 @@ msgid "Character set of the file" msgstr "Σύνολο χαρακτήρων αρχείου" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Μορφοποίηση" @@ -4539,7 +4538,7 @@ msgstr "Πλαίσιο πλοήγησης" msgid "Customize appearance of the navigation frame" msgstr "Προσαρμογή εμφάνισης του πλαισίου πλοήγησης" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Διακομιστές" @@ -5908,7 +5907,7 @@ msgid "" msgstr "" "Ορίζεται αν το ερώτημα πρέπει να παραμείνει στην οθόνη μετά την υποβολή του" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Διατήρηση παραθύρου ερωτήματος" @@ -6251,7 +6250,7 @@ msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσει msgid "possible deep recursion attack" msgstr "πιθανή βαθειά ανάδρομή επίθεση" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6259,15 +6258,15 @@ msgstr "" "Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί " "σωστά)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Ο διακομιστής δεν αποκρίνεται." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Λεπτομέρειες..." @@ -6322,8 +6321,8 @@ msgstr "Δημιουργία πίνακα" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Όνομα" @@ -6424,8 +6423,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, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -6437,7 +6436,7 @@ msgid "use this for future exports" msgstr "χρησιμοποιήστε το για μελλοντικές εξαγωγές" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Σύνολο χαρακτήρων του αρχείου:" @@ -6967,11 +6966,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %" +"sΙστοσελίδα του PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:133 msgid "Related Links" @@ -7030,7 +7029,7 @@ msgstr "Συμβάν" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Προσδιορισμός" @@ -7091,7 +7090,7 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Φιλοξενητής" @@ -7314,8 +7313,8 @@ msgstr "Εξαγωγή περιεχομένων" msgid "No data found for GIS visualization." msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοποίηση GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." @@ -7490,78 +7489,78 @@ msgstr "Κατάσταση συμβατότητας SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Να μην γίνεται AUTO_INCREMENT σε μηδενικές τιμές" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Απόκρυψη" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Δυαδικό" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" "Εξαιτίας του μεγέθος του,
    αυτό το πεδίο ίσως να μη μπορεί να διορθωθεί" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Συνέχιση εισαγωγής με %s εγγραφές" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "και μετά" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος εισαγωγής" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Επιστροφή" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" @@ -7585,7 +7584,7 @@ msgid "To" msgstr "Προς" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Αποστολή" @@ -7603,7 +7602,7 @@ msgstr "Προσθήκη προθέματος" msgid "Do you really want to execute the following query?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Χωρίς αλλαγή" @@ -7855,7 +7854,7 @@ msgstr "" "Παρακαλώ διαβάστε στην τεκμηρίωση για το πως μπορείτε να ανανεώσετε τον " "πίνακα column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Αποθηκευμένο ερώτημα SQL" @@ -7909,6 +7908,10 @@ msgstr "" msgid "no description" msgstr "χωρίς περιγραφή" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Απεπιλογή όλων" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Ρύθμιση δευτερεύοντος" @@ -7945,8 +7948,8 @@ msgstr "Κατάσταση πρωτεύοντος" msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Μεταβλητή" @@ -7973,7 +7976,7 @@ msgstr "Οποιοσδήποτε χρήστης" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" @@ -8006,10 +8009,10 @@ msgid "Generate Password" msgstr "Παραγωγή Κωδικού Πρόσβασης" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8020,7 +8023,7 @@ msgstr "Το ακόλουθο ερώτημα έχει αποτύχει: «%s»" msgid "Sorry, we failed to restore the dropped event." msgstr "Συγνώμη, αποτύχαμε να επαναφέρουμε το συμβάν διαγραφής." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Το εφεδρικό ερώτημα ήταν:" @@ -8035,7 +8038,7 @@ msgstr "Το συμβάν %1$s έχει αλλαχτεί." msgid "Event %1$s has been created." msgstr "Το συμβάν %1$s έχει δημιουργηθεί." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8046,14 +8049,14 @@ msgstr "" msgid "Edit event" msgstr "Επεξεργασία συμβάντος" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Σφάλμα στην προώθηση αιτημάτος" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Λεπτομέρειες" @@ -8066,7 +8069,7 @@ msgstr "Όνομα συμβάντος" msgid "Event type" msgstr "Τύπος συμβάντος" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Αλλαγή σε %s" @@ -8093,13 +8096,13 @@ msgstr "Λήξη" msgid "On completion preserve" msgstr "Διατήρηση με την ολοκλήρωση" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Προσδιοριστής" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Ο οριστής πρέπει να είναι της μορφής «username@hostname»" @@ -8124,7 +8127,7 @@ msgstr "Πρέπει να δώσετε έναν έγκυρο τύπο συμβά msgid "You must provide an event definition." msgstr "Πρέπει να δώσετε έναν προσδιορισμό συμβάντος." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Νέο" @@ -8144,7 +8147,7 @@ msgstr "Κατάσταση προγραμματισμού συμβάντων" msgid "Returns" msgstr "Επιστροφές" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 #, fuzzy #| msgid "" #| "You are using PHP's deprecated 'mysql' extension, which is not capable of " @@ -8161,89 +8164,89 @@ msgstr "" "αποθηκευμένων ερωτημάτων ίσως αποτύχουν!
    Χρησιμοποιήστε τη βελτιωμένη " "επέκταση «mysqli» για να αποφύγετε προβλήματα." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Μη έγκυρος τύπος ρουτίνας: «%s»" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Συγνώμη, αποτύχαμε να επαναφέρουμε τη διαγραμμένη ρουτίνα." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Η ρουτίνα %1$s έχει αλλαχτεί." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Η ρουτίνα %1$s έχει δημιουργηθεί." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Επεξεργασία ρουτίνας" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Όνομα ρουτίνας" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Παράμετροι" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Κατεύθυνση" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Μήκος/Τιμές*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Προσθήκη παραμέτρου" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Μετακίνηση τελευταίας παραμέτρου" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Τύπος επιστροφής" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Επιστροφή μήκους/τιμών" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Επιλογές επιστροφής" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Είναι προσδιοριστικό" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Τύπος ασφάλειας" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Πρόσβαση δεδομένων SQL" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Πρέπει να δώσετε ένα όνομα στη ρουτίνα" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Εσφαλμένη κατεύθυνση «%s» δόθηκε για την παράμετρο." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8251,20 +8254,20 @@ msgstr "" "Πρέπει να δώσετε μήκος/τιμές για τις παραμέτρους της ρουτίνας του τύπου " "ENUM, SET, VARCHAR και VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" "Πρέπει να δώσετε ένα όνομα και ένα τύπο για κάθε παράμετρος της ρουτίνας." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Πρέπει να δώσετε ένα έγκυρο τύπο επιστροφής για τη ρουτίνα." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Πρέπει να δώσετε ένα προσδιορισμό ρουτίνας." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8272,18 +8275,18 @@ msgstr[0] "%d εγγραφή επηρεάστηκε από την τελευτα msgstr[1] "" "%d εγγραφές επηρεάστηκαν από την τελευταία δήλωση μέσα στη διαδικασία" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Εκτέλεση ρουτίνας" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Παράμετροι ρουτίνας" @@ -8567,7 +8570,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Άγνωστη γλώσσα: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Τρέχων διακομιστής" @@ -8598,50 +8601,50 @@ msgstr "Βάση δεδομένων προορισμού" msgid "Click to select" msgstr "Πατήστε για επιλογή" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο διακομιστή «%s»" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Καθάρισμα" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Στήλες" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Να μην αλλάξει το ερώτημα από εξωτερική πηγή" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Διαχωριστικό" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Επανεμφάνιση αυτού του ερώτηματος εδώ" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Μόνο ανάγνωση" @@ -8744,7 +8747,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Ευρετήριο" @@ -8797,12 +8800,12 @@ msgid "As defined:" msgstr "Όπως ορίστηκε:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Πρωτεύον" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Πλήρες κείμενο" @@ -8816,12 +8819,12 @@ msgstr "" msgid "after %s" msgstr "Μετά το %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Προσθήκη %s στήλης(ών)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." @@ -8878,7 +8881,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Εμφανίζει έναν σύνδεσμο για αυτήν την εικόνα." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8901,8 +8904,8 @@ msgstr "" "επιλογή για να ορίσετε μια μορφή ημερομηνίας-ώρας. Η τρίτη επιλογή ορίζει αν " "θέλετε να δείτε την τοπική ή την παγκόσμια ώρα (χρήση «local» ή «utc» " "αντίστοιχα). Σύμφωνα με αυτό, η μορφή της ημερομηνίας έχει διαφορετική τιμή " -"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP " -"και για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()." +"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP και " +"για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()." #: libraries/transformations/text_plain__external.inc.php:13 msgid "" @@ -9055,8 +9058,8 @@ msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Χρήστης" @@ -9174,8 +9177,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " -"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " -"%sεδώ%s." +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" +"sεδώ%s." #: main.php:357 #, php-format @@ -9195,17 +9198,17 @@ msgstr "" "Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για " "πιθανά ζητήματα." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Δεν υπάρχουν βάσεις δεδομένων" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Φιλτράρισμα πινάκων κατά όνομα" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Φιλτράρισμα πινάκων κατά όνομα" @@ -9226,7 +9229,7 @@ msgstr "Εμφάνιση/Απόκρυψη αριστερού μενού" msgid "Save position" msgstr "Αποθήκευση θέσης" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Δημιουργία συσχέτισης" @@ -9286,37 +9289,37 @@ msgstr "Απόκρυψη/Εμφάνιση Πινάκων χωρίς συσχέτ msgid "Number of tables" msgstr "Αριθμός πινάκων" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Διαγραφή συσχέτισης" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Λειτουργός συσχέτισης" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Εξαίρεση" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "υποερώτημα" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Μετονομασία σε" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Νέο όνομα" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Άθροιση" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Ενεργές επιλογές" @@ -9482,13 +9485,13 @@ msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για msgid "Files" msgstr "Αρχεία" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" @@ -9504,7 +9507,7 @@ msgstr "Θέση" msgid "Original position" msgstr "Αρχική θέση" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Πληροφορία" @@ -9532,11 +9535,11 @@ msgstr "Πρωτεύουσα αναπαραγωγή" msgid "Slave replication" msgstr "Δευτερεύουσα αναπαραγωγή" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Ενεργοποίηση Στατιστικών" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9792,7 +9795,7 @@ msgid "None" msgstr "Κανένα" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" @@ -9809,7 +9812,7 @@ msgstr "Διαχείριση" msgid "Global privileges" msgstr "Γενικά δικαιώματα" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" @@ -9830,7 +9833,7 @@ msgstr "Πληροφορίες Σύνδεσης" msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." @@ -9879,7 +9882,7 @@ msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επι msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Επεξεργασία Δικαιωμάτων" @@ -9892,7 +9895,7 @@ msgid "Export all" msgstr "Εξαγωγή όλων" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Οποιοδήποτε" @@ -9909,32 +9912,32 @@ msgstr "Δικαιώματα για %s" msgid "Users overview" msgstr "Επισκόπηση χρηστών" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Χορήγηση" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -9942,50 +9945,50 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Δικαιώματα πεδίων" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να " "χρησιμοποιηθούν" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... διατήρηση του παλιού χρήστη." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9993,42 +9996,42 @@ msgstr "" "... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των " "δικαιωμάτων." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Βάση δεδομένων για χρήστη" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "γενικός" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "σχετιζόμενος με βάση δεδομένων" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "μπαλαντέρ" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Ο χρήστης προστέθηκε." @@ -10320,23 +10323,23 @@ msgstr "Εμφάνιση μόνο τιμών ειδοποίησης" msgid "Filter by category..." msgstr "Φιλτράρισμα ανά κατηγορία..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Εμφάνιση μη διαμορφομένων τιμών" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Σχετικοί σύνδεσμοι:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Αναλυτής εκτέλεσης" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Οδηγίες" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10344,7 +10347,7 @@ msgstr "" "Το σύστημα Συμβούλου μπορεί να παρέχει προτάσεις για μεταβλητές διακομιστή " "αναλύοντας τις μεταβλητές κατάστασης διακομιστή." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10353,7 +10356,7 @@ msgstr "" "Σημειώστε ότι αυτό το σύστημα παρέχει προτάσεις βάσει σε απλούς υπολογισμούς " "και βασικούς κανόνες που μπορεί να μην εφαρμόζονται στο σύστημά σας." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10363,7 +10366,7 @@ msgstr "" "τεημνρίωση) και πως να αναιρέσετε την αλλαγή. Εσφαλμένη ρύθμιση ίσως έχει " "σοβαρή επίδραση στην απόδοση." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10374,31 +10377,31 @@ msgstr "" "αν δεν υπήρχε ουσιαστική βελτίωση." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Ερωτήσεις από την εκκίνηση: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Δηλώσεις" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %1$s. Ξεκίνησε στις %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10406,19 +10409,19 @@ msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " "μια αναπαραγωγική διαδικασία." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " "αναπαραγωγική διαδικασία." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10426,11 +10429,11 @@ msgstr "" "Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " "επισκεφτείτε τον τομέα αναπαραγωγής." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Κατάσταση αναπαραγωγής" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10439,35 +10442,35 @@ msgstr "" "έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να " "είναι εσφαλμένες." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Ελήφθησαν" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Εστάλησαν" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Αποτυχημένες προσπάθειες" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "Κωδικός" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Εντολή" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10475,12 +10478,12 @@ msgstr "" "Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να " "κλείσει σωστά τη σύνδεση." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10490,20 +10493,20 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " "MySQL." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10515,11 +10518,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10527,7 +10530,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10535,7 +10538,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10544,23 +10547,23 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10571,7 +10574,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10582,7 +10585,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10591,7 +10594,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10601,7 +10604,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10610,7 +10613,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10623,7 +10626,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10635,37 +10638,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10675,7 +10678,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10687,11 +10690,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10700,7 +10703,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10708,11 +10711,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10720,7 +10723,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10735,55 +10738,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10791,36 +10794,36 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" "Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10829,55 +10832,55 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10886,7 +10889,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10895,7 +10898,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10905,17 +10908,17 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" "Ποσοστό της χρησιμοποιημένης λανθάνουσας μνήμης κλειδιού (υπολογισμένη τιμή)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10926,7 +10929,7 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10934,22 +10937,22 @@ msgstr "" "Η λανθάνουσα μνήμη κλειδιού κακώς υπολογίστηκε ως βαθμός φυσικών αναγνώσεων " "σε σχέση με τα αιτήματα ανάγνωσης (υπολογισμένη τιμή)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Ποσοστό φυσικών εγγραφών σε σχέση με τα αιτήματα εγγραφής (υπολογισμένη τιμή)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10960,7 +10963,7 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10968,12 +10971,12 @@ msgstr "" "Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " "του διακομιστή." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10981,21 +10984,21 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11005,19 +11008,19 @@ msgstr "" "ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " "την εντολή FLUSH QUERY CACHE." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11031,7 +11034,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11039,19 +11042,19 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11059,13 +11062,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11074,7 +11077,7 @@ msgstr "" "κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " "ευρετήρια των πινάκων σας.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11082,17 +11085,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11100,13 +11103,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11114,14 +11117,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11131,23 +11134,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11159,7 +11162,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11169,11 +11172,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11185,47 +11188,47 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Βαθμός λανθάνουσας μνήμης νήματος (υπολογισμένη τιμή)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Έναρξη Εποπτείας" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Οδηγίες/Εγκατάσταση" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Ολοκληρώθηκε η επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Προσθήκη διαγράμματος" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Ρυθμός ανανέωσης" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Στήλες διαγράμματος" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Διευθέτηση διαγράμματος" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11233,15 +11236,15 @@ msgstr "" "Η διευθέτηση των διαγραμμάτων αποθηκεύεται στον τοπικό χώρο αποθήκευσης των " "φυλλομετρητών. Ίσως θέλετε να το εξάγετε αν έχετε πολύπλοκη ρύθμιση." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Επαναφορά προεπιλογής" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Οδηγίες Εποπτείας" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11251,12 +11254,12 @@ msgid "" msgstr "" "Η Εποπτεία phpMyAdmin μπορεί να σας βοηθήσει να βελτιστοποιήσετε τη ρύθμιση " "του διακομιστή και να καταγράφει χρονοβόρα ερωτήματα. Για το τελευταίο θα " -"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει " -"το slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " +"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει το " +"slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " "παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και " "15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11269,11 +11272,11 @@ msgstr "" "MySQL 5.1.6 και νεότερη. Μπορείτε να χρησιμοποιήσετε παρόλα αυτά τα " "χαρακτηριστικά διαγραμμάτων του διακομιστή." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Χρήση της εποπτείας:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11284,7 +11287,7 @@ msgstr "" "ρυθμό ανανέωσης στη «Ρυθμίσεις», ή να απομακρύνεται οποιοδήποτε διάγραμμα " "χρηισιμποιώντας το εικονίδιο διαγραφής στο αντίστοιχο διάγραμμα." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11297,11 +11300,11 @@ msgstr "" "επιβεβαιώσετε, θα φορτωθεί ένας πίνακας ομαδοποιημένων ερωτημάτων, οπού εκεί " "μπορείτε να πατήσετε οποιαδήποτε δήλωση SELECTγια περαιτέρω ανάλυση." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Σημειώστε:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11315,88 +11318,88 @@ msgstr "" "απενεργοποίησετε το general_log και να αδειάσετε τον πίνακά του μόλις δεν " "είναι απαραίτητη η εποπτεία." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Προκαθορισμός διαγράμματος" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Μεταβλητή(ές) κατάστασης" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Επιλογή σειρών:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Συχνά εποπτευόμενα" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "ή όνομα τύπου μεταβλητής:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Προβολή ως διαφορική τιμή" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Εφαρμογή διαιρέτη" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Προσάρτηση μονάδας στις τιμές δεδομένων" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Προσθήκη αυτής της σειράς" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Εκκαθάριση σειράς" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Σειρά σε Διάγραμμα:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Στατιστικά καταγραφών" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Επιλεγμένο εύρος χρόνου:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Λήψη μόνο των δηλώσεων SELECT,INSERT,UPDATE και DELETE" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Απομάκρυνση δεδομένων μεταβλητών στις δηλώσεις INSERT για καλύτερη " "ομαδοποιήση" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Επιλέξτε από ποια καταγραφή θέλετε να δημιουργούνται τα στατιστικά." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Τα αποτελέσματα ομαδοποιηούνται ανα κείμενο ερωτήματος." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Αναλυτής ερωτήματος" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d δευτερόλεπτο" msgstr[1] "%d δευτερόλεπτο" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11781,8 +11784,8 @@ msgid "" "(currently %d)." msgstr "" "Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " -"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" -"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%" +"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:306 #, php-format @@ -12191,35 +12194,35 @@ msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" msgid "Showing tables" msgstr "Εμφάνιση πινάκων" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Χρήση χώρου" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Αποτελεσματικός" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Στατιστικά Εγγραφών" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "στατικό" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "δυναμικά" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Μέγεθος γραμμής" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Μέγεθος εγγραφής" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Επόμενη αυτόματη αρίθμηση" @@ -12246,7 +12249,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Όριο μη διακριτού κλειδιού" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Χωρική" @@ -12298,51 +12301,51 @@ msgstr "Ένα ευρετήριο προστέθηκε στο %s" msgid "Show more actions" msgstr "Προβολή περισσοτέρων δράσεων" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Απομάκρυνση στήλης(ών)" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Επεξεργασία εμφάνισης" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Εμφάνιση συσχετίσεων" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Προτεινόμενη δομή πίνακα" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Προσθήκη στήλης" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Στο τέλος του Πίνακα" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Στην αρχή του Πίνακα" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Μετά το %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Δημιουργία ευρετηρίου σε  %s  στήλες" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "κατατμήθηκε" @@ -12809,8 +12812,8 @@ msgid "" msgstr "" "Η λανθάνουσα μνήμη ερωτήματος είναι γνωστό ότι βελτιώνει σημαντικά την " "απόδοση, αν ρυθμιστεί σωστά. Ενεργοποιήστε τη ορίζοντας το " -"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε " -"«ΟΝ». Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση." +"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε «ΟΝ». " +"Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση." #: libraries/advisory_rules.txt:151 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -12891,8 +12894,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Η τρέχουσα αναλογία της ελεύθερης λανθάνουσας μνήμης ερωτήματος προς τη " "συνολική λανθάνουσα μνήμη ερωτήματος είναι %s%%. Πρέπει να είναι περισσότερο " @@ -12969,8 +12972,8 @@ msgid "" "value is, the better (This rules firing limit: 0.1%%)" msgstr "" "Ο βαθμός απομακρυσμένων ερωτημάτων προς τα εισερχόμενα ερωτήματα είναι %s%%. " -"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: " -"0,1%%)" +"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: 0,1%" +"%)" #: libraries/advisory_rules.txt:188 msgid "Query cache max size" @@ -13054,8 +13057,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "Το %s%% όλων των ταξινομήσεων προκαλεί προσωρινούς πίνακες, αυτή η τιμή " "πρέπει να είναι κάτω από 10%%." @@ -13623,8 +13626,8 @@ msgstr "" #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από " -"1%%" +"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από 1%" +"%" #: libraries/advisory_rules.txt:399 msgid "Rate of aborted connections" @@ -13981,8 +13984,8 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων " -#~ "%s;" +#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων %" +#~ "s;" #~ msgid "Unknown error while uploading." #~ msgstr "Άγνωστο σφάλμα κατά την αποστολή αρχείου." diff --git a/po/en_GB.po b/po/en_GB.po index cbd9bea086..ca1dd8ad93 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-16 15:28+0200\n" "Last-Translator: Robert Readman \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: Weblate 1.0\n" @@ -40,53 +40,54 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Search" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Go" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Description" @@ -119,13 +120,13 @@ msgstr "Database comment: " msgid "Table comments" msgstr "Table comments" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -134,30 +135,30 @@ msgstr "Table comments" msgid "Column" msgstr "Column" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -195,8 +196,8 @@ msgstr "Links to" msgid "Comments" msgstr "Comments" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -205,15 +206,15 @@ msgstr "Comments" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "No" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -228,8 +229,8 @@ msgstr "No" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -244,11 +245,11 @@ msgstr "View dump (schema) of database" msgid "No tables found in database." msgstr "No tables found in database." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Select All" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Unselect All" @@ -323,12 +324,12 @@ msgstr "Add constraints" msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Collation" @@ -351,17 +352,17 @@ msgstr "Edit or export relational schema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Table" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rows" @@ -376,21 +377,21 @@ msgstr "in use" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Creation" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Last update" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Last check" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Or" @@ -494,85 +495,87 @@ msgstr "Submit Query" msgid "Access denied" msgstr "Access denied" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "at least one of the words" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "all words" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "the exact phrase" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "as regular expression" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Search results for \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s match inside table %2$s" -msgstr[1] "%1$s matched inside table %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Browse" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Delete the matches for the %s table?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Delete" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s match" msgstr[1] "Total: %s matches" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s match inside table %2$s" +msgstr[1] "%1$s matched inside table %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Browse" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Delete the matches for the %s table?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Delete" + +#: db_search.php:362 msgid "Search in database" msgstr "Search in database" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Words or values to search for (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Find:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Words are separated by a space character (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Inside tables:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Inside column:" @@ -611,18 +614,18 @@ msgstr "Tracking is not active." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"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." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "View" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -632,93 +635,89 @@ msgstr "Replication" msgid "Sum" msgstr "Sum" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Check All" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Uncheck All" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Print view" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Empty" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Drop" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Check table" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimise table" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Repair table" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyse table" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Add prefix to table" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Replace table prefix" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copy table with prefix" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -731,9 +730,9 @@ msgstr "Tracked tables" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Database" @@ -750,17 +749,17 @@ msgstr "Created" msgid "Updated" msgstr "Updated" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Action" @@ -792,7 +791,7 @@ msgstr "Structure snapshot" msgid "Untracked tables" msgstr "Untracked tables" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Track table" @@ -928,11 +927,11 @@ msgstr "" #: import.php:86 #, 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 "" -"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." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1004,13 +1003,13 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Back" @@ -1094,8 +1093,8 @@ msgstr "The password is empty!" msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Add user" @@ -1113,7 +1112,7 @@ msgid "Close" msgstr "Close" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1140,13 +1139,13 @@ msgstr "Static data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Other" @@ -1176,7 +1175,7 @@ msgstr "Server traffic (in KiB)" msgid "Connections since last refresh" msgstr "Connections since last refresh" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processes" @@ -1240,13 +1239,13 @@ msgstr "System swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1298,7 +1297,7 @@ msgstr "Bytes sent" msgid "Bytes received" msgstr "Bytes received" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Connections" @@ -1337,11 +1336,11 @@ msgstr "%d table(s)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Settings" @@ -1364,8 +1363,8 @@ msgstr "Please add at least one variable to the series" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "None" @@ -1465,7 +1464,7 @@ msgstr "Change settings" msgid "Current settings" msgstr "Current settings" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Chart Title" @@ -1549,7 +1548,7 @@ msgstr "Explain output" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Time" @@ -1642,10 +1641,10 @@ msgstr "" "Failed building chart grid with imported config. Resetting to default " "config..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1693,9 +1692,9 @@ msgstr "Used variable / formula" msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Cancel" @@ -1723,9 +1722,9 @@ msgstr "Dropping Column" msgid "Adding Primary Key" msgstr "Adding Primary Key" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1801,7 +1800,7 @@ msgstr "Deleting" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "The definition of a stored function must contain a RETURN statement!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" @@ -1841,8 +1840,8 @@ msgstr "Show query box" msgid "No rows selected" msgstr "No rows selected" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Change" @@ -1857,7 +1856,7 @@ msgid "%d is not valid row number." msgstr "%d is not valid row number." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2358,16 +2357,16 @@ msgstr "Unexpected characters on line %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "per second" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "per minute" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "per hour" @@ -2468,8 +2467,8 @@ msgstr "Sort by key" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Options" @@ -2522,7 +2521,7 @@ msgid "The row has been deleted" msgstr "The row has been deleted" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Kill" @@ -2551,27 +2550,27 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Query results operations" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Display chart" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Visualise GIS data" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Create view" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Link not found" @@ -2645,46 +2644,46 @@ msgstr "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Javascript must be enabled past this point" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "No index defined!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexes" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Packed" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comment" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "The primary key has been dropped" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Index %s has been dropped" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2693,9 +2692,9 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Databases" @@ -2705,7 +2704,7 @@ msgstr "Databases" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2718,102 +2717,102 @@ msgstr "Server" msgid "Structure" msgstr "Structure" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Insert" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operations" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Tracking" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggers" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Table seems to be empty!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Query" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privileges" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routines" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Events" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Users" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchronise" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binary log" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Engines" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Error" @@ -2855,64 +2854,64 @@ msgstr "Recent tables" msgid "There are no recent tables" msgstr "There are no recent tables" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is available on this MySQL server." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s has been disabled for this MySQL server." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "unknown table status: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Source database `%s` was not found!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Target database `%s` was not found!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Invalid database" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Invalid table name" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Table %1$s has been renamed to %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Could not save table UI preferences" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2921,7 +2920,7 @@ msgstr "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2932,22 +2931,22 @@ msgstr "" "after you refresh this page. Please check if the table structure has been " "changed." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Function" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Value" @@ -2955,7 +2954,7 @@ msgstr "Value" msgid "Table Search" msgstr "Table Search" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Edit/Insert" @@ -3094,20 +3093,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3401,11 +3400,11 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" -"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." #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3516,12 +3515,12 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Overhead" @@ -3632,18 +3631,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL query" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3731,7 +3730,7 @@ msgstr "The %s functionality is affected by a known bug, see %s" msgid "Click to toggle" msgstr "Click to toggle" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Browse your computer:" @@ -3741,8 +3740,8 @@ msgstr "Browse your computer:" msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" @@ -3926,7 +3925,7 @@ msgstr "Restore default value" msgid "Allow users to customize this value" msgstr "Allow users to customise this value" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4216,7 +4215,7 @@ msgid "Character set of the file" msgstr "Character set of the file" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4514,7 +4513,7 @@ msgstr "Navigation frame" msgid "Customize appearance of the navigation frame" msgstr "Customise appearance of the navigation frame" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servers" @@ -5844,7 +5843,7 @@ msgid "" msgstr "" "Defines whether the query box should stay on-screen after its submission" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Retain query box" @@ -6173,7 +6172,7 @@ msgstr "The %s extension is missing. Please check your PHP configuration." msgid "possible deep recursion attack" msgstr "possible deep recursion attack" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6181,15 +6180,15 @@ msgstr "" "The server is not responding (or the local server's socket is not correctly " "configured)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "The server is not responding." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Please check privileges of directory containing database." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Details..." @@ -6244,8 +6243,8 @@ msgstr "Create table" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Name" @@ -6345,19 +6344,19 @@ msgstr ", @TABLE@ will become the table name" #, 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 "" "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." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "use this for future exports" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Character set of the file:" @@ -6873,11 +6872,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 "" -"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." #: libraries/engines/pbxt.lib.php:133 msgid "Related Links" @@ -6936,7 +6935,7 @@ msgstr "Event" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definition" @@ -6997,7 +6996,7 @@ msgstr "Display MIME types" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7212,8 +7211,8 @@ msgstr "Export contents" msgid "No data found for GIS visualization." msgstr "No data found for GIS visualisation." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -7388,76 +7387,76 @@ msgstr "SQL compatibility mode:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Do not use AUTO_INCREMENT for zero values" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Hide" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binary" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Because of its length,
    this column might not be editable" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "web server upload directory" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "and then" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Show insert query" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Go back to previous page" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Insert another new row" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Go back to this page" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Edit next row" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" @@ -7481,7 +7480,7 @@ msgid "To" msgstr "To" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Submit" @@ -7497,7 +7496,7 @@ msgstr "Add prefix" msgid "Do you really want to execute the following query?" msgstr "Do you really want to execute the following query?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "No change" @@ -7748,7 +7747,7 @@ msgid "" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Bookmarked SQL query" @@ -7798,6 +7797,10 @@ msgstr "Re-login to phpMyAdmin to load the updated configuration file." msgid "no description" msgstr "no description" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Uncheck All" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Slave configuration" @@ -7834,8 +7837,8 @@ msgstr "Master status" msgid "Slave status" msgstr "Slave status" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -7862,7 +7865,7 @@ msgstr "Any user" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Use text field" @@ -7895,10 +7898,10 @@ msgid "Generate Password" msgstr "Generate Password" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7909,7 +7912,7 @@ msgstr "The following query has failed: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Sorry, we failed to restore the dropped event." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "The backed up query was:" @@ -7924,7 +7927,7 @@ msgstr "Event %1$s has been modified." msgid "Event %1$s has been created." msgstr "Event %1$s has been created." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "One or more errors have occurred while processing your request:" @@ -7933,14 +7936,14 @@ msgstr "One or more errors have occurred while processing your request:" msgid "Edit event" msgstr "Edit event" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Error in processing request" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Details" @@ -7953,7 +7956,7 @@ msgstr "Event name" msgid "Event type" msgstr "Event type" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Change to %s" @@ -7980,13 +7983,13 @@ msgstr "End" msgid "On completion preserve" msgstr "On completion preserve" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definer" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "The definer must be in the \"username@hostname\" format" @@ -8011,7 +8014,7 @@ msgstr "You must provide a valid type for the event." msgid "You must provide an event definition." msgstr "You must provide an event definition." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "New" @@ -8031,7 +8034,7 @@ msgstr "Event scheduler status" msgid "Returns" msgstr "Returns" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8043,89 +8046,89 @@ msgstr "" "fail![/strong] Please use the improved 'mysqli' extension to avoid any " "problems." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Invalid routine type: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Sorry, we failed to restore the dropped routine." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Routine %1$s has been modified." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Routine %1$s has been created." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Edit routine" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Routine name" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parameters" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Add parameter" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Remove last parameter" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Return type" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Return length/values" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Return options" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Is deterministic" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Security type" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL data access" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "You must provide a routine name" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Invalid direction \"%s\" given for parameter." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8133,37 +8136,37 @@ msgstr "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "You must provide a name and a type for each routine parameter." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "You must provide a valid return type for the routine." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "You must provide a routine definition." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Execution results of routine %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Execute routine" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Routine parameters" @@ -8446,7 +8449,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Unknown language: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Current server" @@ -8477,50 +8480,50 @@ msgstr "Target database" msgid "Click to select" msgstr "Click to select" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Run SQL query/queries on server %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Clear" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Replace existing bookmark of same name" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Delimiter" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Show this query here again" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "View only" @@ -8622,7 +8625,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Index" @@ -8673,12 +8676,12 @@ msgid "As defined:" msgstr "As defined:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primary" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fulltext" @@ -8691,12 +8694,12 @@ msgstr "first" msgid "after %s" msgstr "after %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Add %s column(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "You have to add at least one column." @@ -8751,7 +8754,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Displays a link to download this image." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8928,8 +8931,8 @@ msgid "Protocol version" msgstr "Protocol version" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "User" @@ -9063,17 +9066,17 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "No databases" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filter tables by name" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filter tables by name" @@ -9094,7 +9097,7 @@ msgstr "Show/Hide left menu" msgid "Save position" msgstr "Save position" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Create relation" @@ -9154,37 +9157,37 @@ msgstr "Hide/Show Tables with no relation" msgid "Number of tables" msgstr "Number of tables" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Delete relation" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Relation operator" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Except" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "subquery" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Rename to" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "New name" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Aggregate" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Active options" @@ -9346,13 +9349,13 @@ msgstr "Select binary log to view" msgid "Files" msgstr "Files" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -9368,7 +9371,7 @@ msgstr "Position" msgid "Original position" msgstr "Original position" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Information" @@ -9396,11 +9399,11 @@ msgstr "Master replication" msgid "Slave replication" msgstr "Slave replication" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Enable Statistics" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9646,7 +9649,7 @@ msgid "None" msgstr "None" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Table-specific privileges" @@ -9663,7 +9666,7 @@ msgstr "Administration" msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Database-specific privileges" @@ -9683,7 +9686,7 @@ msgstr "Login Information" msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "No user found." @@ -9732,7 +9735,7 @@ msgstr "The selected users have been deleted successfully." msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Edit Privileges" @@ -9745,7 +9748,7 @@ msgid "Export all" msgstr "Export all" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Any" @@ -9762,81 +9765,81 @@ msgstr "Privileges for %s" msgid "Users overview" msgstr "Users overview" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Add privileges on the following database" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Add privileges on the following table" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... delete the old one from the user tables." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9844,41 +9847,41 @@ msgstr "" "... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Database for user" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Create database with same name and grant all privileges" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Grant all privileges on database "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "User has been added." @@ -10162,23 +10165,23 @@ msgstr "Show only alert values" msgid "Filter by category..." msgstr "Filter by category..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Show unformatted values" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Related links:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Run analyser" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Instructions" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10186,7 +10189,7 @@ msgstr "" "The Advisor system can provide recommendations on server variables by " "analysing the server status variables." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10196,7 +10199,7 @@ msgstr "" "calculations and by rule of thumb which may not necessarily apply to your " "system." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10206,7 +10209,7 @@ msgstr "" "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10217,31 +10220,31 @@ msgstr "" "no clearly measurable improvement." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Questions since startup: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Network traffic since startup: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "This MySQL server has been running for %1$s. It started up on %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10249,16 +10252,16 @@ msgstr "" "This MySQL server works as master and slave in replication process." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "This MySQL server works as master in replication process." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "This MySQL server works as slave in replication process." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10266,11 +10269,11 @@ msgstr "" "For further information about replication status on the server, please visit " "the replication section." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Replication status" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10278,35 +10281,35 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Received" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Sent" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Aborted" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Command" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10314,11 +10317,11 @@ msgstr "" "The number of connections that were aborted because the client died without " "closing the connection properly." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of failed attempts to connect to the MySQL server." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10328,18 +10331,18 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: server_status.php:1323 -msgid "" -"The number of connection attempts (successful or not) to the MySQL server." -msgstr "" -"The number of connection attempts (successful or not) to the MySQL server." - #: server_status.php:1324 msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"The number of connection attempts (successful or not) to the MySQL server." + +#: server_status.php:1325 +msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " "to increase the tmp_table_size value to cause temporary tables to be memory-" @@ -10350,79 +10353,79 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:1326 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - #: server_status.php:1327 msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:1328 msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." + +#: server_status.php:1329 +msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: server_status.php:1333 -msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." - #: server_status.php:1334 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." #: server_status.php:1335 msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: server_status.php:1336 +msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10432,7 +10435,7 @@ msgstr "" "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10440,20 +10443,20 @@ msgstr "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimise ORDER BY ... DESC." -#: server_status.php:1338 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - #: server_status.php:1339 msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + +#: server_status.php:1340 +msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " "tables are not properly indexed or that your queries are not written to take " @@ -10464,47 +10467,47 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:1347 -msgid "" -"The number of latched pages in InnoDB buffer pool. These are pages currently " -"being read or written or that can't be flushed or removed for some other " -"reason." -msgstr "" -"The number of latched pages in InnoDB buffer pool. These are pages currently " -"being read or written or that can't be flushed or removed for some other " -"reason." - #: server_status.php:1348 msgid "" +"The number of latched pages in InnoDB buffer pool. These are pages currently " +"being read or written or that can't be flushed or removed for some other " +"reason." +msgstr "" +"The number of latched pages in InnoDB buffer pool. These are pages currently " +"being read or written or that can't be flushed or removed for some other " +"reason." + +#: server_status.php:1349 +msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " "be calculated as Innodb_buffer_pool_pages_total - " @@ -10515,40 +10518,40 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:1350 -msgid "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." -msgstr "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." - #: server_status.php:1351 msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." + +#: server_status.php:1352 +msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:1353 -msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." -msgstr "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." - #: server_status.php:1354 msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." + +#: server_status.php:1355 +msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " "available, it's necessary to wait for pages to be flushed first. This " @@ -10561,51 +10564,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10613,35 +10616,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10649,68 +10652,68 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:1386 -msgid "" -"The number of key blocks in the key cache that have changed but haven't yet " -"been flushed to disk. It used to be known as Not_flushed_key_blocks." -msgstr "" -"The number of key blocks in the key cache that have changed but haven't yet " -"been flushed to disk. It used to be known as Not_flushed_key_blocks." - #: server_status.php:1387 msgid "" -"The number of unused blocks in the key cache. You can use this value to " -"determine how much of the key cache is in use." +"The number of key blocks in the key cache that have changed but haven't yet " +"been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -"The number of unused blocks in the key cache. You can use this value to " -"determine how much of the key cache is in use." +"The number of key blocks in the key cache that have changed but haven't yet " +"been flushed to disk. It used to be known as Not_flushed_key_blocks." #: server_status.php:1388 msgid "" +"The number of unused blocks in the key cache. You can use this value to " +"determine how much of the key cache is in use." +msgstr "" +"The number of unused blocks in the key cache. You can use this value to " +"determine how much of the key cache is in use." + +#: server_status.php:1389 +msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." @@ -10719,47 +10722,47 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage of used key cache (calculated value)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: server_status.php:1391 -msgid "" -"The number of physical reads of a key block from disk. If Key_reads is big, " -"then your key_buffer_size value is probably too small. The cache miss rate " -"can be calculated as Key_reads/Key_read_requests." -msgstr "" -"The number of physical reads of a key block from disk. If Key_reads is big, " -"then your key_buffer_size value is probably too small. The cache miss rate " -"can be calculated as Key_reads/Key_read_requests." - #: server_status.php:1392 msgid "" +"The number of physical reads of a key block from disk. If Key_reads is big, " +"then your key_buffer_size value is probably too small. The cache miss rate " +"can be calculated as Key_reads/Key_read_requests." +msgstr "" +"The number of physical reads of a key block from disk. If Key_reads is big, " +"then your key_buffer_size value is probably too small. The cache miss rate " +"can be calculated as Key_reads/Key_read_requests." + +#: server_status.php:1393 +msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentage of physical writes compared to write requests (calculated value)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10769,7 +10772,7 @@ msgstr "" "optimiser. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10777,11 +10780,11 @@ msgstr "" "The maximum number of connections that have been in use simultaneously since " "the server started." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10789,19 +10792,19 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10811,51 +10814,51 @@ msgstr "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:1407 -msgid "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." -msgstr "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." - #: server_status.php:1408 msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." + +#: server_status.php:1409 +msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10863,35 +10866,35 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: server_status.php:1414 -msgid "" -"The number of joins without keys that check for key usage after each row. " -"(If this is not 0, you should carefully check the indexes of your tables.)" -msgstr "" -"The number of joins without keys that check for key usage after each row. " -"(If this is not 0, you should carefully check the indexes of your tables.)" - #: server_status.php:1415 msgid "" +"The number of joins without keys that check for key usage after each row. " +"(If this is not 0, you should carefully check the indexes of your tables.)" +msgstr "" +"The number of joins without keys that check for key usage after each row. " +"(If this is not 0, you should carefully check the indexes of your tables.)" + +#: server_status.php:1416 +msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10899,26 +10902,26 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:1420 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - #: server_status.php:1421 msgid "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:1422 msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"The number of queries that have taken more than long_query_time seconds." + +#: server_status.php:1423 +msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." @@ -10927,23 +10930,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10955,7 +10958,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -10965,11 +10968,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10981,47 +10984,47 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Thread cache hit rate (calculated value)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Start Monitor" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Instructions/Setup" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Done rearranging/editing charts" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Add chart" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Rearrange/edit charts" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Refresh rate" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Chart columns" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Chart arrangement" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11029,15 +11032,15 @@ msgstr "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Reset to default" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Monitor Instructions" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11051,7 +11054,7 @@ msgstr "" "enabled. Note however, that the general_log produces a lot of data and " "increases server load by up to 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11063,11 +11066,11 @@ msgstr "" "table is supported by MySQL 5.1.6 and onwards. You may still use the server " "charting features however." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Using the monitor:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11077,7 +11080,7 @@ msgstr "" "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11089,11 +11092,11 @@ msgstr "" "confirmed, this will load a table of grouped queries, there you may click on " "any occurring SELECT statements to further analyse them." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Please note:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11105,86 +11108,86 @@ msgstr "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Preset chart" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Status variable(s)" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Select series:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Commonly monitored" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "or type variable name:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Display as differential value" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Apply a divisor" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Append unit to data values" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Add this series" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Clear series" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Series in Chart:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Log statistics" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Selected time range:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Remove variable data in INSERT statements for better grouping" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Choose from which log you want the statistics to be generated from." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Results are grouped by query text." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Query analyser" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d second" msgstr[1] "%d seconds" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11954,35 +11957,35 @@ msgstr "Check referential integrity:" msgid "Showing tables" msgstr "Showing tables" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Space usage" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Row Statistics" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "static" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamic" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Row length" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Row size" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Next autoindex" @@ -12007,7 +12010,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Foreign key constraint" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Spatial" @@ -12057,49 +12060,49 @@ msgstr "An index has been added on %s" msgid "Show more actions" msgstr "Show more actions" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Move columns" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Move the columns by dragging them up and down." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Edit view" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Propose table structure" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Add column" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "At End of Table" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "At Beginning of Table" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Create an index on  %s columns" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partitioned" @@ -12625,11 +12628,11 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" #: libraries/advisory_rules.txt:174 msgid "Query cache fragmentation" @@ -12779,11 +12782,11 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." #: libraries/advisory_rules.txt:211 msgid "Rate of sorts that cause temporary tables" diff --git a/po/es.po b/po/es.po index 65b4c99fb0..59c9088e18 100644 --- a/po/es.po +++ b/po/es.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-03 22:21+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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "principal o su navegador está bloqueando las actualizaciones en ventanas " "múltiples debido a sus parámetros de seguridad." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Buscar" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Continuar" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nombre de la clave" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Descripción" @@ -117,13 +118,13 @@ msgstr "Comentario de la base de datos: " msgid "Table comments" msgstr "Comentarios de la tabla" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Comentarios de la tabla" msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Enlaces a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Comentarios" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "No" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "No" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Ver el volcado (esquema) de la base de datos" msgid "No tables found in database." msgstr "No se han encontrado tablas en la base de datos." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Seleccionar todo" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Deseleccionar todo" @@ -321,12 +322,12 @@ msgstr "Añadir restricciones" msgid "Switch to copied database" msgstr "Seleccionar la base de datos copiada" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Cotejamiento" @@ -349,17 +350,17 @@ msgstr "Editar o exportar esquema relacional" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabla" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Filas" @@ -374,21 +375,21 @@ msgstr "en uso" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Creación" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Última actualización" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Última revisión" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Borrar" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "O" @@ -494,87 +495,89 @@ msgstr "Ejecutar la consulta" msgid "Access denied" msgstr "Acceso denegado" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "al menos una de estas palabras" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "Todas las palabras" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "La frase exacta" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "como expresión regular" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultados de la búsqueda para \"%s\" %s:" -# singular: %s resultado en la tabla %s -# plural: %s resultados en la tabla %s -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s coincidencia en la tabla %2$s" -msgstr[1] "%1$s coincidencias en la tabla %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Examinar" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "¿Eliminar las coincidencias para la tabla %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Borrar" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: db_search.php:292 +# singular: %s resultado en la tabla %s +# plural: %s resultados en la tabla %s +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s coincidencia en la tabla %2$s" +msgstr[1] "%1$s coincidencias en la tabla %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Examinar" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "¿Eliminar las coincidencias para la tabla %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Borrar" + +#: db_search.php:362 msgid "Search in database" msgstr "Buscar en la base de datos" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palabras o valores a buscar (comodín: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Encontrado:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Las palabras están separadas por un espacio (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Dentro de las tablas:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Dentro de la columna:" @@ -613,18 +616,18 @@ msgstr "El seguimiento no está activo." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Esta vista tiene al menos este número de filas. Refiérase a la " -"%sdocumentation%s." +"Esta vista tiene al menos este número de filas. Refiérase a la %" +"sdocumentation%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Visualizar" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -634,94 +637,90 @@ msgstr "Replicación" msgid "Sum" msgstr "Número de filas" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s es el motor de almacenamiento predeterminado en este servidor MySQL." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Desmarcar todos" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Vaciar" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Revisar la tabla" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimizar la tabla" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Reparar la tabla" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizar la tabla" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Agregar prefijo a la tabla" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Reemplazar prefijo de la tabla" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiar tabla con prefijo" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Diccionario de datos" @@ -734,9 +733,9 @@ msgstr "Tablas con seguimiento" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de datos" @@ -753,17 +752,17 @@ msgstr "Creado/a" msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Estado actual" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Acción" @@ -795,7 +794,7 @@ msgstr "Instantánea de la estructura" msgid "Untracked tables" msgstr "Tablas sin seguimiento" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Hacer seguimiento a la tabla" @@ -928,17 +927,17 @@ msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena " -"ubicada debajo en el campo \"Valor\"" +"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena ubicada " +"debajo en el campo \"Valor\"" #: import.php:86 #, 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 "" -"Usted probablemente intentó cargar un archivo demasiado grande. Refiérase a " -"%sla documentation%s para hallar modos de superar esta limitación." +"Usted probablemente intentó cargar un archivo demasiado grande. Refiérase a %" +"sla documentation%s para hallar modos de superar esta limitación." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1014,13 +1013,13 @@ msgstr "" "importación a menos que usted incremente el tiempo de ejecución de php." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Su consulta se ejecutó con éxito" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Volver" @@ -1104,8 +1103,8 @@ msgstr "¡La contraseña está vacía!" msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Agregar usuario" @@ -1123,7 +1122,7 @@ msgid "Close" msgstr "Cerrar" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1150,13 +1149,13 @@ msgstr "Datos estáticos" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Otro" @@ -1186,7 +1185,7 @@ msgstr "Tráfico del servidor (en KiB)" msgid "Connections since last refresh" msgstr "Connexiones desde la última actualización" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesos" @@ -1250,13 +1249,13 @@ msgstr "Intercambio de sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1308,7 +1307,7 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Conexiones" @@ -1349,12 +1348,12 @@ msgstr "%d tabla(s)" msgid "Questions" msgstr "Preguntas" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Tráfico" # This is the text showed in the tab -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Configuración" @@ -1377,8 +1376,8 @@ msgstr "Agregue al menos una variable a la serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Ninguna" @@ -1478,7 +1477,7 @@ msgstr "Cambiar configuraciones" msgid "Current settings" msgstr "Configuraciones actuales" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Título del gráfico" @@ -1565,7 +1564,7 @@ msgstr "Explicar salida" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Tiempo" @@ -1660,10 +1659,10 @@ msgstr "" "No se pudo crear la grilla de gráficos con la configuración importada. " "Reiniciando a configuración predeterminada..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1711,9 +1710,9 @@ msgstr "Variable/fórmula utilizada" msgid "Test" msgstr "Prueba" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Cancelar" @@ -1741,9 +1740,9 @@ msgstr "Eliminando Columna" msgid "Adding Primary Key" msgstr "Añadiendo Clave Primaria" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1820,7 +1819,7 @@ msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "¡La definición de una función almacenada debe contener una sentencia RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" @@ -1860,8 +1859,8 @@ msgstr "Mostrar ventana de consultas SQL" msgid "No rows selected" msgstr "No se seleccionaron filas" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Cambiar" @@ -1876,7 +1875,7 @@ msgid "%d is not valid row number." msgstr "%d no es un número de fila válido." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2386,16 +2385,16 @@ msgstr "" "Caracter inesperado en la línea %1$s. Se esperaba una tabulación pero se " "encontró «%2$s»" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "por hora" @@ -2496,8 +2495,8 @@ msgstr "Ordenar según la clave" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opciones" @@ -2552,7 +2551,7 @@ msgid "The row has been deleted" msgstr "La fila se ha borrado" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Matar el proceso" @@ -2581,27 +2580,27 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Visualizar datos GIS" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Crear vista" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "No se encontró el enlace" @@ -2676,46 +2675,46 @@ msgstr "Las cookies deben estar activadas." msgid "Javascript must be enabled past this point" msgstr "Pasado este punto, debe tener Javascript activado" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "¡No se ha definido ningún índice!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinalidad" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentario" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "La clave primaria ha sido eliminada" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "El índice %s ha sido eliminado" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2724,9 +2723,9 @@ msgstr "" "Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar " "uno." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Bases de datos" @@ -2736,7 +2735,7 @@ msgstr "Bases de datos" msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2749,102 +2748,102 @@ msgstr "Servidor" msgid "Structure" msgstr "Estructura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Insertar" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operaciones" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Seguimiento" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Disparadores" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "La tabla, ¡parece estar vacía!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "La base de datos, ¡parece estar vacía!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Generar una consulta" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegios" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Eventos" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Diseñador" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Usuarios" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronizar" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Registro binario" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Juegos de caracteres" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Complementos" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motores" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Error" @@ -2886,66 +2885,66 @@ msgstr "Tablas recientes" msgid "There are no recent tables" msgstr "No existen tablas recientes" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponible en este servidor MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, 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:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "estado de tabla desconocido: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "¡No se encontró la base de datos de origen «%s»!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "¡No se encontró la base de datos de destino «%s»!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "La base de datos no es válida" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "El nombre de la tabla no es válido" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabla %1$s ahora se llama %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "No se pudieron guardar las preferencias de interfaz" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2954,7 +2953,7 @@ msgstr "" "Falló la limpieza de las preferencia de interfaz de tablas (ver $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2965,22 +2964,22 @@ msgstr "" "no serán persistentes luego de actualizar esta página. Revise si cambió la " "estructura de la tabla." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Función" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operador" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Valor" @@ -2988,7 +2987,7 @@ msgstr "Valor" msgid "Table Search" msgstr "Búsqueda de tablas" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Editar/Insertar" @@ -3130,16 +3129,16 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Un número de coma flotante pequeño; los valores posibles son de -3.402823466E" "+38 a -1.175494351E-38, 0 y de 1.175494351E-38 a 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Un número de coma flotante de precisión doble; los valores permitidos son de " @@ -3183,8 +3182,8 @@ msgstr "Una fecha, el rango válido es de «%1$s» a «%2$s»" #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a " -"«%2$s»" +"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a «%2" +"$s»" #: libraries/Types.class.php:323 msgid "" @@ -3284,8 +3283,8 @@ msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 " -"- 1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que " +"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 - " +"1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que " "indica la cantidad de bytes en el valor" #: libraries/Types.class.php:347 @@ -3311,9 +3310,9 @@ msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -"Una columna de bloque de texto («BLOB») con una longitud máxima de " -"4294967295 (2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que " -"indica la longitud del valor" +"Una columna de bloque de texto («BLOB») con una longitud máxima de 4294967295 " +"(2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que indica la " +"longitud del valor" #: libraries/Types.class.php:353 msgid "" @@ -3450,8 +3449,8 @@ msgstr "Bienvenido a %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "La razón más probable es que usted no haya creado un archivo de " "configuración. Utilice el %1$sscript de configuración%2$s para crear uno." @@ -3570,12 +3569,12 @@ msgstr "Tablas" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Datos" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Residuo a depurar" @@ -3688,18 +3687,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "es" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "consulta SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3787,7 +3786,7 @@ msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" msgid "Click to toggle" msgstr "Pulse para conmutar" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" @@ -3798,8 +3797,8 @@ msgid "Select from the web server upload directory %s:" msgstr "" "Seleccionar directorio en el servidor web para subir los archivos %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" "No se puede acceder al directorio que seleccionó para subir los archivos" @@ -3989,7 +3988,7 @@ msgstr "Restaurar valor predeterminado" msgid "Allow users to customize this value" msgstr "Permitir a los usuarios personalizar este valor" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4284,7 +4283,7 @@ msgid "Character set of the file" msgstr "Conjunto de caracteres del archivo" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formato" @@ -4591,7 +4590,7 @@ msgstr "" "Cambiar la apariencia predefinida de la página que contiene los elementos de " "navegación" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servidores" @@ -5952,7 +5951,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "Define si la consulta se mostrará aún después de enviar el formulario" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Mantener la caja de texto con la consulta" @@ -6299,7 +6298,7 @@ msgstr "No se encontró la extensión %s. Revisa la configuración PHP." msgid "possible deep recursion attack" msgstr "posible ataque de recursión extrema" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6307,15 +6306,15 @@ msgstr "" "El servidor no está respondiendo (o el zócalo local al servidor MySQL no " "está configurado correctamente)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "El servidor no está respondiendo." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Revisa los permisos del directorio que contiene la base de datos." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detalles..." @@ -6372,8 +6371,8 @@ msgstr "Crear tabla" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nombre" @@ -6473,8 +6472,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla" #, 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 "" "Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar " "cadenas para formatear el tiempo. Además sucederán las siguientes " @@ -6486,7 +6485,7 @@ msgid "use this for future exports" msgstr "usar esto para exportaciones futuras" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Conjunto de caracteres del archivo:" @@ -7017,8 +7016,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." @@ -7081,7 +7080,7 @@ msgstr "Evento" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definición" @@ -7142,7 +7141,7 @@ msgstr "Tipos MIME disponibles" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Servidor" @@ -7361,8 +7360,8 @@ msgstr "Exportar contenidos" msgid "No data found for GIS visualization." msgstr "No se encontraron datos para la visualización GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 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)." @@ -7544,77 +7543,77 @@ msgstr "Modalidad SQL compatible:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No utilizar AUTO_INCREMENT con el valor 0" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Ocultar" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Debido a su longitud,
    esta columna podría no ser editable" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binario - no editar" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "directorio en el servidor web para subir los archivos" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar inserción con %s filas" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "y luego" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Agregar como nueva fila e ignorar errores" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Mostrar consulta de inserción" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Volver" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Volver a esta página" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse " "a cualquier parte" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" @@ -7639,7 +7638,7 @@ msgid "To" msgstr "A" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Enviar" @@ -7655,7 +7654,7 @@ msgstr "Agregar prefijo" msgid "Do you really want to execute the following query?" msgstr "¿Realmente desea ejecutar la siguiente consulta?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Sin cambios" @@ -7905,7 +7904,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Para actualizar su tabla column_comments, revise la documentación" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Consulta guardada en favoritos" @@ -7958,6 +7957,10 @@ msgstr "" msgid "no description" msgstr "Sin descripción" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Desmarcar todos" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Configuración de esclavo" @@ -7994,8 +7997,8 @@ msgstr "Estado del maestro" msgid "Slave status" msgstr "Estado del esclavo" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -8022,7 +8025,7 @@ msgstr "Cualquier usuario" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Use el campo de texto" @@ -8055,10 +8058,10 @@ msgid "Generate Password" msgstr "Generar la contraseña" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8069,7 +8072,7 @@ msgstr "Falló la siguiente consulta: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Pedimos disculpas por no haber podido recuperar el evento eliminado." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "La consulta respaldada era:" @@ -8084,7 +8087,7 @@ msgstr "Se modificó el evento %1$s." msgid "Event %1$s has been created." msgstr "Se creó el evento %1$s." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "Ocurrieron uno o más errores al procesar el pedido:" @@ -8093,14 +8096,14 @@ msgstr "Ocurrieron uno o más errores al procesar el pedido:" msgid "Edit event" msgstr "Editar evento" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Error al procesar la petición" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalles" @@ -8113,7 +8116,7 @@ msgstr "Nombre del evento" msgid "Event type" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Cambiar a %s" @@ -8140,13 +8143,13 @@ msgstr "Fin" msgid "On completion preserve" msgstr "Preservar al completar" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definidor" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "El definidor tiene que ser en el formato \"usuario@sistema\"" @@ -8171,7 +8174,7 @@ msgstr "Debe proveer un tipo válido para el evento." msgid "You must provide an event definition." msgstr "Debe proveer una definición de evento." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Nuevo" @@ -8191,7 +8194,7 @@ msgstr "Estado del planificador de eventos" msgid "Returns" msgstr "Retorna" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8203,89 +8206,89 @@ msgstr "" "guardadas puede fallar[/strong]. Utilice la extensión mejorada «mysqli» para " "evitar problemas." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rutina inválido: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Se modificó la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Se creó la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Editar rutina" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Nombre de rutina" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parámetros" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Dirección" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Longitud/Valores" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Agregar parámetro" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Eliminar último parámetro" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Retornar el tipo" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Retornar longitud/valores" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Retornar opciones" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Es determinístico" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Tipo de seguridad" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Acceso de datos SQL" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Debe proveer un nombre de rutina" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Dirección \"%s\" inválida provista para el parámetro." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8293,37 +8296,37 @@ msgstr "" "Debe proveer longitud/valores para los parámetros de tipo ENUM, SET, VARCHAR " "y VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Debe proveer un nombre y tipo para cada parámetro de rutina." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Debe proveer un tipo de retorno válido para la rutina." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Debe proveer una definición de rutina." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Resultados de la ejecución de la rutina %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Ejecutar rutina" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Parámetros de rutina" @@ -8607,7 +8610,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Idioma desconocido: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Servidor actual" @@ -8638,50 +8641,50 @@ msgstr "Base de datos objetivo" msgid "Click to select" msgstr "Clic para seleccionar" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Limpiar" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Reemplazar el favorito existente que tenga el mismo nombre" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Delimitador" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Mostrar esta consulta otra vez" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Solamente ver" @@ -8786,7 +8789,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Índice" @@ -8840,12 +8843,12 @@ msgid "As defined:" msgstr "Personalizado:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primaria" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Texto completo" @@ -8858,12 +8861,12 @@ msgstr "primera" msgid "after %s" msgstr "después de %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Agregar %s columna(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Debe agregar al menos una columna." @@ -8919,7 +8922,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Muestra un enlace para descargar esta imagen." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9100,8 +9103,8 @@ msgid "Protocol version" msgstr "Versión del protocolo" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Usuario" @@ -9220,8 +9223,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:357 #, php-format @@ -9241,15 +9244,15 @@ msgstr "" "El servidor está utilizando Suhosin. Refiérase a la %sdocumentación%s por " "posibles inconvenientes." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "No hay bases de datos" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "Filtrar bases de datos por nombre" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtrar tablas por nombre" @@ -9270,7 +9273,7 @@ msgstr "Ocultar/mostrar menú izquierdo" msgid "Save position" msgstr "Guardar posición" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Crear relación" @@ -9330,38 +9333,38 @@ msgstr "Ocultar/mostrar Tablas que no tengan relación" msgid "Number of tables" msgstr "Número de tablas" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Eliminar la relación" # Relation refers to actual mathematical operations not the DB-related term -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Operador de relación" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Excepto" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "sub-consulta" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Cambiar el nombre a" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nuevo nombre" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Agregar" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Opciones activas" @@ -9529,13 +9532,13 @@ msgstr "Seleccionar el registro binario que desea examinar" msgid "Files" msgstr "Archivos" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Truncar las consultas que ya se han mostrado" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" @@ -9552,7 +9555,7 @@ msgstr "Posición" msgid "Original position" msgstr "Posición original" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Información" @@ -9580,11 +9583,11 @@ msgstr "Replicación maestra" msgid "Slave replication" msgstr "Replicación esclava" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Activar las estadísticas" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9838,7 +9841,7 @@ msgid "None" msgstr "Ninguno" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" @@ -9856,7 +9859,7 @@ msgstr "Administración" msgid "Global privileges" msgstr "Privilegios globales" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" @@ -9879,7 +9882,7 @@ msgstr "Información de la cuenta" msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Usuario(s) no encontrado(s)." @@ -9928,7 +9931,7 @@ msgstr "Los usuarios seleccionados fueron borrados exitosamente." msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Editar los privilegios" @@ -9941,7 +9944,7 @@ msgid "Export all" msgstr "Exportar todo" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "cualquiera" @@ -9958,33 +9961,33 @@ msgstr "Privilegios para %s" msgid "Users overview" msgstr "Vista global de usuarios" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Eliminar a los usuarios seleccionados" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocar todos los privilegios activos de los usuarios y borrarlos después." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" "Eliminar las bases de datos que tienen los mismos nombres que los usuarios." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " @@ -9992,52 +9995,52 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se encontró en la tabla de privilegios." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilegios específicos para la columna" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Añadir privilegios a esta base de datos" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Los comodines _ y % deben acompañarse del caracter de escape \\ para usarlos " "de manera literal" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Añadir privilegios a esta tabla" # Login refers to the user account not the act of logging in -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Cambiar la información de la cuenta / Copiar el usuario" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Crear un nuevo usuario con los mismos privilegios y..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "...mantener el anterior." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "...borrar el viejo de las tablas de usuario." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocar todos los privilegios activos del viejo y eliminarlo después." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10045,43 +10048,43 @@ msgstr "" " ...borrar el viejo de las tablas de usuario y luego volver a cargar los " "privilegios." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Base de datos para el usuario" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "Crear base de datos con el mismo nombre y otorgar todos los privilegios" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Otorgar todos los privilegios para la base de datos "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios con acceso a "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "específico para la base de datos" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "comodín" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Se agregó el usuario." @@ -10372,23 +10375,23 @@ msgstr "Mostrar sólo valores de alerta" msgid "Filter by category..." msgstr "Filtrar por categoría..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Mostrar valores sin formato" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Enlaces relacionados:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Ejecutar analizador" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Instrucciones" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10396,7 +10399,7 @@ msgstr "" "El sistema de consejos puede proveer recomendaciones para las variables del " "servidor analizando las variables de estado del servidor." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10406,7 +10409,7 @@ msgstr "" "cálculos simples y reglas generales que no serán necesariamente válidas en " "su sistema." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10416,7 +10419,7 @@ msgstr "" "cambiando (leyendo la documentación) y cómo revertir el cambio. Ajustes " "incorrectos pueden tener un gran efecto negativo en performance." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10427,31 +10430,31 @@ msgstr "" "una mejora diferenciable." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Preguntas desde el inicio: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Sentencias" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico de red desde el inicio: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Este servidor MySQL ha estado activo durante %1$s. Se inició en %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10459,19 +10462,19 @@ msgstr "" "Este servidor MySQL trabaja como maestro y esclavo en un " "proceso de replicación." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor MySQL trabaja como maestro en un proceso de " "replicación." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor MySQL trabaja como esclavo en un proceso de " "replicación." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10479,11 +10482,11 @@ msgstr "" "Para más información sobre el estado de replicación en el servidor, revise " "la sección sobre replicación." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Estado de replicación" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10492,35 +10495,35 @@ msgstr "" "pueden excederse. Por tanto, las estadísticas reportadas por el servidor " "MySQL pueden ser incorrectas." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Recibido" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Enviado" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Número máx. de conexiones concurrentes" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Intentos fallidos" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "Identificación" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Comando" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10528,11 +10531,11 @@ msgstr "" "La cantidad de conexiones que fueron abandonadas porque el cliente murió sin " "cerrar la conexión apropiadamente." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10542,19 +10545,19 @@ msgstr "" "binarios pero que excedieron el valor del binlog_cache_size y usaron un " "archivo temporal para almacenar las sentencias de la transacción." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El número de transacciones que usaron el cache temporal de registros " "binarios." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Cantidad de intentos de conexión al servidor MySQL (fallidos o exitosos)." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10567,11 +10570,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10579,7 +10582,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10587,7 +10590,7 @@ msgstr "" "El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún " "error (probablemente una clave duplicada)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10595,23 +10598,23 @@ msgstr "" "El número de procesos gestores INSERT DELAYED en uso. Cada tabla diferente " "en la cual uno usa INSERT DELAYED recibe su propio proceso." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "El número de veces que una fila fue eliminada de una tabla." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10622,7 +10625,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10633,7 +10636,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10642,7 +10645,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10652,7 +10655,7 @@ msgstr "" "clave. Este se incrementa si usted está consultando una columna índice con " "un limitante de rango o si usted está haciendo un escaneo del índice." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10661,7 +10664,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10674,7 +10677,7 @@ msgstr "" "requieren que MySQL escanee tablas enteras o usted debe tener vínculos " "(joins) que no usan las claves de manera apropiada." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10687,37 +10690,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "El número de solicitudes hechas para actualizar una fila en una tabla." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "El número de solicitudes hechas para insertar una fila en una tabla." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "El número de páginas conteniendo datos (sucias o limpias)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El número de páginas de la reserva de búfers que se ha solicitado sean " "vaciadas." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "El número de páginas libres." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10727,7 +10730,7 @@ msgstr "" "páginas en fase de lectura o escritura o que no pueden ser vaciadas o " "removidas por alguna otra razón." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10739,11 +10742,11 @@ msgstr "" "también puede ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10752,7 +10755,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10760,11 +10763,11 @@ msgstr "" "El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando " "InnoDB hace un escaneo secuencial de la tabla completa." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "El número de solicitudes de lectura lógica hechas por InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10772,7 +10775,7 @@ msgstr "" "El número de lecturas lógicas que InnoDB no pudo satisfacer la reserva de " "búfers y donde fue necesario hacer lectura de página sencilla." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10787,55 +10790,55 @@ msgstr "" "Si los parámetros del tamaño de la reserva de búfers se fijaron " "apropiadamente, este valor será pequeño." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "El número de escrituras hechas a la reserva de búfers InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "El número de datos leídos hasta el momento, en bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10843,35 +10846,35 @@ msgstr "" "El número de esperas generadas porque el búfer de registro fue demasiado " "pequeño y hubo que esperar a que fuera vaciado antes de continuar." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "El número de escrituras físicas al archivo de registro." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "El número de escrituras fsync() hechas al archivo de registro." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10880,52 +10883,52 @@ msgstr "" "son contados por páginas; el tamaño de la página permite que pueda " "convertirse fácilmente a bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "El número de row locks que actualmente están en espera." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El tiempo promedio para adquirir un row lock, en milisegundos." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "El total de tiempo invertido para adquirir los row locks, en milisegundos." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El tiempo máximo para adquirir un row lock, en milisegundos." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "El número de veces que un row lock tuvo que esperarse." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10934,7 +10937,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10942,7 +10945,7 @@ msgstr "" "El número de bloques sin usar en el caché de claves. Puede usar este valor " "para determinar cuánto del caché de claves está en uso." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10952,15 +10955,15 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaje de uso del caché de claves (valor calculado)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "El número de solicitudes para leer un bloque de clave desde el caché." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10971,7 +10974,7 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10979,22 +10982,22 @@ msgstr "" "Los fallos en el caché de claves es calculado como la tasa de lecturas " "físicas comparadas con los pedidos de lectura (valor calculado)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "El número de solicitudes para escribir un bloque de claves a la caché." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "El número de escrituras físicas de un bloque de claves al disco." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Porcentaje de escrituras físicas comparadas con pedidos de escritura (valor " "calculado)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11005,7 +11008,7 @@ msgstr "" "planes de consulta para una misma consulta. El valor por omisión de 0 " "significa que ninguna consulta ha sido compilada todavía." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11013,11 +11016,11 @@ msgstr "" "El máximo número de conexiones que han sido utilizadas simultáneamente desde " "que inició el servidor." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El número de filas esperando ser escritas en las colas INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11025,21 +11028,21 @@ msgstr "" "El número de tablas que han sido abiertas. Si el número de tablas abiertas " "es grande, su valor del cache de tabla probablemente es muy pequeño." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El número de flujos de datos que están abiertos (usado principalmente para " "registros)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11049,19 +11052,19 @@ msgstr "" "altas pueden indicar problemas de fragmentación que pueden ser solucionados " "ejecutando la consulta FLUSH QUERY CACHE." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11074,7 +11077,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11082,20 +11085,20 @@ msgstr "" "El número de consultas que no ingresaron al cache (porque no es posible o " "porque el parámetro no está activado en query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "El número total de bloques en el cache de consultas." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "El estado de la replicación a prueba de fallos (aún no ha sido implementada)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11103,13 +11106,13 @@ msgstr "" "El número de vínculos (joins) que no usan índices. Si este valor no es 0, " "deberá revisar los índices de sus tablas cuidadosamente." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "El número de vínculos (joins) que usaron búsqueda por rangos en una tabla de " "referencias." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11118,7 +11121,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11126,19 +11129,19 @@ msgstr "" "El número de vínculos («joins») con rangos en la primera tabla (normalmente " "no es crítico aún cuando sea grande)." -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" "El número de vínculos (joins) que hicieron un escaneo completo de la primera " "tabla." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El número de tablas temporales actualmente abiertas por el proceso SQL " "esclavo." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11146,12 +11149,12 @@ msgstr "" "Número total de veces (desde el arranque) que el proceso SQL esclavo de " "replicación ha reintentado hacer transacciones." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Está ENCENDIDO si este servidor es un esclavo que está conectado a un master." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11159,14 +11162,14 @@ msgstr "" "El número de procesos que han tomado más de los segundos registrados en " "slow_launch_time para crear." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "El número de consultas que han tomado más segundos que los registrados en " "long_query_time." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11176,23 +11179,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "El número de consultas organizar que se ejecutaron con rangos." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "El número de consultas organizar que se hicieron escaneando la tabla." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "El número de veces que un table lock fue adquirido inmediatamente." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11204,7 +11207,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11214,11 +11217,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11230,47 +11233,47 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaje de aciertos del caché de hilos (valor calculado)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Iniciar monitorización" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Instrucciones/Configuración" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Se finalizó la reorganización/edición de gráficos" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Agregar gráfico" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Reorganizar/editar gráficos" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Velocidad de actualización" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Columnas del gráfico" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Ordenación de los gráficos" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11279,15 +11282,15 @@ msgstr "" "navegador. Sería recomendable exportarla si tiene una configuración " "complicada." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Restaurar valor predeterminado" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Instrucciones de monitorización" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11298,11 +11301,10 @@ msgstr "" "El Monitorizador de phpMyAdmin puede asistir en la optimización de la " "configuración del servidor y rastrear consultas que toman mucho tiempo. Para " "esto último necesitará que «log_output» esté definido como 'TABLE' y tener " -"activado «slow_query_log» o «general_log». Note, sin embargo, que " -"«general_log» produce mucha información y aumenta la carga en el servidor " -"hasta en un 15%" +"activado «slow_query_log» o «general_log». Note, sin embargo, que «general_log» " +"produce mucha información y aumenta la carga en el servidor hasta en un 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11315,11 +11317,11 @@ msgstr "" "tabla está disponible desde MySQL versión 5.1.6 y posterior. Si puede " "utilizar las funcionalidades para graficación del servidor." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Utilizando el monitorizador:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11330,7 +11332,7 @@ msgstr "" "la sección 'Configuración' o eliminar cualquier gráfico utilizando el icono " "de rueda dentada en cada gráfico." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11343,11 +11345,11 @@ msgstr "" "una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " "SELECT para analizarla." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Notar que:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11360,86 +11362,86 @@ msgstr "" "más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez " "que ya no se necesite monitorizar." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Gráfico predefinido" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Variable(s) de estado" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Seleccionar serie:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Monitorizaciones comunes" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "o ingrese el nombre de variable:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Mostrar como un valor diferencial" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Aplicar una división" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Agregar unidad a los valores" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Agregar esta serie" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Vaciar serie" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Series en el gráfico:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Estadísticas de registros" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Rango de tiempo seleccionado:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Elegir el registro del que desea generar estadísticas." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Los resultados se agruparán por el texto de la consulta." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Analizador de consultas" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segundo" msgstr[1] "%d segundos" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -12226,35 +12228,35 @@ msgstr "Comprobar la integridad referencial:" msgid "Showing tables" msgstr "Mostrando las tablas" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Espacio utilizado" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efectivo/a" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Estadísticas de la fila" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "estático" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinámico/a" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Longitud de la fila" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Tamaño de la fila" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Índice automático siguiente" @@ -12280,7 +12282,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Restricción de clave foránea" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Espacial" @@ -12330,49 +12332,49 @@ msgstr "Se añadió un índice en %s" msgid "Show more actions" msgstr "Mostrar más acciones" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Mover columnas" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Mueva las columnas arrastrándolas hacia arriba o hacia abajo." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Editar vista" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Vista de relaciones" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Planteamiento de la estructura de tabla" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Añadir columna" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Al final de la tabla" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Al comienzo de la tabla" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Después de %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columna(s)" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "particionado" @@ -12624,8 +12626,8 @@ msgid "" "You might want to increase {long_query_time} or optimize the queries listed " "in the slow query log" msgstr "" -"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen " -"en el registro de consultas lentas" +"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen en " +"el registro de consultas lentas" #: libraries/advisory_rules.txt:68 #, php-format @@ -12692,8 +12694,8 @@ msgid "" "Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" -"Active el registro de consultas lenta configurando «log_slow_queries» a " -"'ON'. Esto ayudará a analizar consultas con mala performance." +"Active el registro de consultas lenta configurando «log_slow_queries» a 'ON'. " +"Esto ayudará a analizar consultas con mala performance." #: libraries/advisory_rules.txt:89 msgid "log_slow_queries is set to 'OFF'" @@ -12838,8 +12840,8 @@ msgid "" msgstr "" "Se sabe que el caché de consultas puede mejorar la performance enormemente " "si está correctamente configurado. Actívelo definiendo «query_cache_size» a " -"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. " -"Notar que: si está utilizando memcached ignore esta recomendación." +"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. Notar " +"que: si está utilizando memcached ignore esta recomendación." #: libraries/advisory_rules.txt:151 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -12916,8 +12918,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "La tasa actual de memoria libre del caché de consultas respecto del tamaño " "total es %s%%. Debería ser mayor al 80%%" @@ -13075,8 +13077,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de todas las ordenaciones causan tablas temporales, este valor debería " "de ser menor a 10%%." @@ -13139,8 +13141,8 @@ msgstr "" #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" -"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor " -"a 1 por hora" +"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor a " +"1 por hora" #: libraries/advisory_rules.txt:233 msgid "Rate of reading first index entry" @@ -13248,8 +13250,7 @@ msgstr "" #: libraries/advisory_rules.txt:260 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" -msgstr "" -"Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s" +msgstr "Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s" #: libraries/advisory_rules.txt:262 msgid "Percentage of temp tables on disk" @@ -13273,14 +13274,13 @@ msgid "" "mentioned in the beginning of an Article by the Pythian Group" msgstr "" -"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin " -"embargo, algunas tablas temporales son siempre escritas a disco " -"independientemente del valor de estas variables. Para eliminarlas deberá re-" -"escribir las consultas para evitar estas condiciones (en una tabla temporal: " -"la presencia de una columna «BLOB» o «TEXT», o la presencia de una columna " -"mayor a 512 bytes) como se menciona al comienzo del artículo de " -"Pythian Group" +"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, " +"algunas tablas temporales son siempre escritas a disco independientemente " +"del valor de estas variables. Para eliminarlas deberá re-escribir las " +"consultas para evitar estas condiciones (en una tabla temporal: la presencia " +"de una columna «BLOB» o «TEXT», o la presencia de una columna mayor a 512 " +"bytes) como se menciona al comienzo del artículo de Pythian Group" #: libraries/advisory_rules.txt:267 #, php-format @@ -13305,8 +13305,8 @@ msgid "" "mentioned in the MySQL Documentation" msgstr "" -"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin " -"embargo, algunas tablas temporales son siempre a disco permanentemente " +"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, " +"algunas tablas temporales son siempre a disco permanentemente " "independientemente del valor de estas variables. Para eliminarlas deberá re-" "escribir las consultas para evitar estas condiciones (en una tabla temporal: " "la presencia de una columna «BLOB» o «TEXT» o la presencia de una columna " @@ -13337,8 +13337,8 @@ msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." msgstr "" -"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M " -"es un buen comienzo." +"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M es " +"un buen comienzo." #: libraries/advisory_rules.txt:294 msgid "key_buffer_size is 0" @@ -13515,8 +13515,7 @@ msgstr "" #: libraries/advisory_rules.txt:359 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a " -"0." +"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a 0." #: libraries/advisory_rules.txt:360 msgid "The thread cache is set to 0" @@ -13603,10 +13602,10 @@ msgid "" "do not close database handlers properly get killed sooner. Make sure the " "code closes database handlers properly." msgstr "" -"Aumente «max_connections» o reduzca «wait_timeout» para que las conexiones " -"que no liberan los manejadores de base de datos apropiadamente sean " -"eliminadas más rápido. Asegúrese que su código cierre los manejadores de " -"base de datos apropiadamente." +"Aumente «max_connections» o reduzca «wait_timeout» para que las conexiones que " +"no liberan los manejadores de base de datos apropiadamente sean eliminadas " +"más rápido. Asegúrese que su código cierre los manejadores de base de datos " +"apropiadamente." #: libraries/advisory_rules.txt:390 #, php-format @@ -13677,8 +13676,8 @@ msgstr "" #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"%s%% de todos los clientes son abandonados. Este valor debería ser menor a " -"2%%" +"%s%% de todos los clientes son abandonados. Este valor debería ser menor a 2%" +"%" #: libraries/advisory_rules.txt:413 msgid "Rate of aborted clients" @@ -13897,8 +13896,7 @@ msgstr "«concurrent_insert» está definido como 0" #~ "A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\" #~ "\"" #~ msgstr "" -#~ "Una combinación de fecha y marca temporal, el rango válido es de «%s» a " -#~ "«%s»" +#~ "Una combinación de fecha y marca temporal, el rango válido es de «%s» a «%s»" #~ msgid "Show help button instead of Documentation text" #~ msgstr "Mostrar botón de ayuda en lugar de texto de documentación" @@ -13981,11 +13979,10 @@ msgstr "«concurrent_insert» está definido como 0" #~ "HH:MM:SS' format, but allows assignment of values to DATETIME columns " #~ "using either strings or numbers." #~ msgstr "" -#~ "Una combinación de fecha y marca temporal. El rango soportado es desde " -#~ "«01-Ene-1000 00:00:00» hasta «31-Dec-9999 23:59:59». MySQL muestra los " -#~ "valores DATETIME en el formato YYY-MM-DD HH:MM:SS, pero permite la " -#~ "asignación de valores a columnas DATETIME utilizando tanto cadenas como " -#~ "números." +#~ "Una combinación de fecha y marca temporal. El rango soportado es desde «01-" +#~ "Ene-1000 00:00:00» hasta «31-Dec-9999 23:59:59». MySQL muestra los valores " +#~ "DATETIME en el formato YYY-MM-DD HH:MM:SS, pero permite la asignación de " +#~ "valores a columnas DATETIME utilizando tanto cadenas como números." #~ msgid "" #~ "A time. The range is '-838:59:59' to '838:59:59'. MySQL displays TIME " @@ -14077,8 +14074,8 @@ msgstr "«concurrent_insert» está definido como 0" #~ "any argument is not a WKB LineString, the return value is NULL." #~ msgstr "" #~ "Construye un valor de cadenas de líneas múltiples WKB («MultiLineString») " -#~ "de «LineString» WKB provistos. Si cualquier parámetro no es un " -#~ "«LineString» WKB, el valor devuelto es NULL." +#~ "de «LineString» WKB provistos. Si cualquier parámetro no es un «LineString» " +#~ "WKB, el valor devuelto es NULL." #~ msgid "" #~ "Constructs a WKB MultiPolygon value from a set of WKB Polygon arguments. " @@ -14301,8 +14298,8 @@ msgstr "«concurrent_insert» está definido como 0" #~ "Documentation and further information about PBMS can be found on %sThe " #~ "PrimeBase Media Streaming home page%s." #~ msgstr "" -#~ "La documentación y más información sobre PBMS puede encontrarse la " -#~ "%spaǵina inicial de The PrimeBase Media Streaming%s." +#~ "La documentación y más información sobre PBMS puede encontrarse la %" +#~ "spaǵina inicial de The PrimeBase Media Streaming%s." #~ msgid "The PrimeBase Media Streaming Blog by Barry Leslie" #~ msgstr "Blog de The PrimeBase Media Streaming por Barry Leslie" diff --git a/po/et.po b/po/et.po index e3ab2cb9a8..d0c42b65a8 100644 --- a/po/et.po +++ b/po/et.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 23:33+0200\n" "Last-Translator: LiivaneLord \n" "Language-Team: estonian \n" -"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgstr "" "Veebilehitseja sihtakent ei saanud uuendada. Võib-olla sulgesid ülemakna või " "sinu veebilehitseja turvasätted blokeerivad akna värskendamist." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Otsi" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Mine" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Võtme nimi" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Kirjeldus" @@ -118,13 +119,13 @@ msgstr "Andmebaasi kommentaar: " msgid "Table comments" msgstr "Tabeli kommentaarid" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Tabeli kommentaarid" msgid "Column" msgstr "Veerg" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tüüp" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Viitab aadressile" msgid "Comments" msgstr "Kommentaarid" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Kommentaarid" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ei" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Ei" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Vaata andmebaasi tõmmist (skeemi)" msgid "No tables found in database." msgstr "Andmebaasist tabeleid ei leitud." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Vali kõik" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Ära vali ühtegi" @@ -322,12 +323,12 @@ msgstr "Lisa piiranguid" msgid "Switch to copied database" msgstr "Mine kopeeritud andmebaasile" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Kodeering" @@ -350,17 +351,17 @@ msgstr "Muuda või ekspordi seoseskeemi" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Ridu" @@ -375,21 +376,21 @@ msgstr "kasutusel" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Loodud" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Viimati uuendatud" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Viimane kontroll" @@ -452,7 +453,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Või" @@ -493,85 +494,87 @@ msgstr "Saada päring" msgid "Access denied" msgstr "Ligipääs keelatud" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "vähemalt üks sõna" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "kõik sõnad" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "täpne vaste" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "regulaaravaldisena" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s otsingu tulemused:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s vaste %2$s tabelis" -msgstr[1] "%1$s vastet %2$s tabelis" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Vaata" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Kustutada %s tabeli vasted?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Kustuta" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Kokku: %s vaste" msgstr[1] "Kokku: %s vastet" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s vaste %2$s tabelis" +msgstr[1] "%1$s vastet %2$s tabelis" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Vaata" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Kustutada %s tabeli vasted?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Kustuta" + +#: db_search.php:362 msgid "Search in database" msgstr "Otsi andmebaasist" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Sõnad või väärtused, mida otsida (metamärk: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Leia:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Sõnad on eraldatud tühikuga (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Tabelitest:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Veerust:" @@ -610,8 +613,8 @@ msgstr "Jälgimist pole aktiveeritud." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s." @@ -620,7 +623,7 @@ msgstr "" msgid "View" msgstr "Vaade" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -630,93 +633,89 @@ msgstr "Paljundamine" msgid "Sum" msgstr "Summa" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on selle MySQL serveri vaikimisi varundusmootor." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Valitutega:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Vali kõik" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Ära vali ühtegi" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Kontrolli ballastiga tabeleid" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspordi" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Prindi vaade" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tühjenda" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Kustuta" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Kontrolli tabelit" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimeeri tabelit" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Paranda tabelit" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analüüsi tabelit" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Lisa tabelile eesliide" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Asenda tabeli eesliide" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopeeri tabel koos eesliitega" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Andmesõnastik" @@ -729,9 +728,9 @@ msgstr "Jälgitud tabelid" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Andmebaas" @@ -748,17 +747,17 @@ msgstr "Loodud" msgid "Updated" msgstr "Uuendatud" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Staatus" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Tegevus" @@ -790,7 +789,7 @@ msgstr "Struktuuri hetkepilt" msgid "Untracked tables" msgstr "Jälgimata tabelid" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Jälgi tabelit" @@ -927,8 +926,8 @@ msgstr "" #: import.php:86 #, 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 "" "Tõenäoliselt üritasid üles laadida liiga suurt faili. Selle piirangu kohta " "loe %sdokumentatsioonist%s." @@ -1004,13 +1003,13 @@ msgstr "" "piiranguid." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Sinu SQL päring teostati edukalt" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Tagasi" @@ -1095,8 +1094,8 @@ msgstr "Parool on tühi!" msgid "The passwords aren't the same!" msgstr "Paroolid ei kattu!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Lisa kasutaja" @@ -1114,7 +1113,7 @@ msgid "Close" msgstr "Sulge" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1141,13 +1140,13 @@ msgstr "Staatilised andmed" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Kokku" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Muud" @@ -1177,7 +1176,7 @@ msgstr "Serveri liiklus (KiB'des)" msgid "Connections since last refresh" msgstr "Ühendusi pärast viimast värskendust" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Protsessid" @@ -1241,13 +1240,13 @@ msgstr "Süsteemisaale" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1299,7 +1298,7 @@ msgstr "Saadetud baidid" msgid "Bytes received" msgstr "Vastuvõetud baidid" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Ühendused" @@ -1338,11 +1337,11 @@ msgstr "%d tabel(it)" msgid "Questions" msgstr "Päringud" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Liiklus" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Sätted" @@ -1365,8 +1364,8 @@ msgstr "Palun lisa seeriasse vähemalt üks muutuja" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Puudub" @@ -1466,7 +1465,7 @@ msgstr "Muuda sätteid" msgid "Current settings" msgstr "Praegused sätted" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Diagrammi pealkiri" @@ -1550,7 +1549,7 @@ msgstr "Selgita väljundit" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Aeg" @@ -1643,10 +1642,10 @@ msgstr "" "Imporditud seadistusega diagrammi ruudustiku loomine ebaõnnestus. " "Lähtestamine vaikimisi seadistusse..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impordi" @@ -1694,9 +1693,9 @@ msgstr "Kasutatud muutuja / valem" msgid "Test" msgstr "Testi" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Katkesta" @@ -1724,9 +1723,9 @@ msgstr "Veeru kustutamine" msgid "Adding Primary Key" msgstr "Primaarvõtme lisamine" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1802,7 +1801,7 @@ msgstr "Kustutamine" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET muutja" @@ -1841,8 +1840,8 @@ msgstr "Näita päringu kasti" msgid "No rows selected" msgstr "Ridu pole valitud" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Muuda" @@ -1857,7 +1856,7 @@ msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2360,16 +2359,16 @@ msgstr "Ootamatud sümbolid %s. real" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Ootamatu sümbol %1$s. real. Oodatud vaheleht, aga leiti \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "sekundis" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "minutis" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "tunnis" @@ -2471,8 +2470,8 @@ msgstr "Sorteeri võtme alusel" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Valikud" @@ -2525,7 +2524,7 @@ msgid "The row has been deleted" msgstr "Rida on kustutatud" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Sulge" @@ -2554,27 +2553,27 @@ msgstr "kokku" msgid "Query took %01.4f sec" msgstr "päring kestis %01.4f sekundit" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Prindi vaade (täispikkade tekstidega)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Näita diagrammi" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Visualiseeri GIS andmed" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Loo vaade" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Linki ei leitud" @@ -2646,46 +2645,46 @@ msgstr "Küpsised peavad olema lubatud." msgid "Javascript must be enabled past this point" msgstr "Javascript peab olema lubatud" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Indeksit pole määratud!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksid" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Ainulaadne" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Pakitud" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Hulk" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentaar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primaarvõti on kustutatud" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "%s indeks on kustutatud" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2694,9 +2693,9 @@ msgstr "" "%1$s ja %2$s indeksid tunduvad olema võrdsed ja üks neist tõenäoliselt " "kustutatakse." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Andmebaasid" @@ -2706,7 +2705,7 @@ msgstr "Andmebaasid" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2719,102 +2718,102 @@ msgstr "Server" msgid "Structure" msgstr "Struktuur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Lisa" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Tegevused" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Jälgimine" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Päästikud" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabel tundub olevat tühi!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Andmebaas tundub olevat tühi!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Päring" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Õigused" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Funktsioonid" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Sündmused" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Kujundaja" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Kasutajad" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sünkroniseeri" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binaarne logi" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Muutujad" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Märgitabelid" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Pluginad" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Mootorid" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Viga" @@ -2856,63 +2855,63 @@ msgstr "Hiljutised tabelid" msgid "There are no recent tables" msgstr "Hiljutisi tabeleid pole" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Detailne staatuse teave antud varundusmootori kohta puudub." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s on saadaval selles MySQL serveris." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s on keelatud selle MySQL serveri jaoks." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "See MySQL server ei toeta %s varundusmootorit." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "tundmatu tabeli staatus: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähteandmebaasi `%s` ei leitud!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Sihtandmebaasi `%s` ei leitud!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Vigane andmebaas" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Vigane tabeli nimi" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Esines viga %1$s tabeli ümbernimetamisel nimeks %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tabeli uueks nimeks sai %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Tabeli UI eelistusi ei saanud salvestada" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2921,7 +2920,7 @@ msgstr "" "Tabeli UI eelistuste puhastamine ebaõnnestus (vaata $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2931,22 +2930,22 @@ msgstr "" "Ei saanud salvestada UI muudatust \"%s\". Muudatused ei säili, kui " "värskendad seda lehte. Palun kontrolli, kas tabeli struktuuri on muudetud." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funktsioon" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operaator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Väärtus" @@ -2954,7 +2953,7 @@ msgstr "Väärtus" msgid "Table Search" msgstr "Tabeli otsing" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Muuda/Lisa" @@ -3094,20 +3093,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3153,9 +3152,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 " -"03:14:07\" UTC, säilitatakse sekundite hulgana alates ajastu algusest " -"(\"1970-01-01 00:00:00\" UTC)" +"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 03:14:07" +"\" UTC, säilitatakse sekundite hulgana alates ajastu algusest (\"1970-01-01 " +"00:00:00\" UTC)" #: libraries/Types.class.php:325 libraries/Types.class.php:727 #, php-format @@ -3401,11 +3400,11 @@ msgstr "Tere tulemast %s'i" #: libraries/auth/config.auth.lib.php:98 #, 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 "" -"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada " -"%1$spaigaldaja skripti%2$s." +"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada %1" +"$spaigaldaja skripti%2$s." #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3516,12 +3515,12 @@ msgstr "Tabelid" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Andmed" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Ballast" @@ -3632,18 +3631,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL päring" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3731,7 +3730,7 @@ msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s" msgid "Click to toggle" msgstr "Muuda" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Sirvi oma arvutist:" @@ -3741,8 +3740,8 @@ msgstr "Sirvi oma arvutist:" msgid "Select from the web server upload directory %s:" msgstr "Vali veebiserveri üleslaadimise kataloogist %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Valitud üleslaadimise kataloogile ei pääse ligi" @@ -3926,7 +3925,7 @@ msgstr "Taasta vaikimisi väärtus" msgid "Allow users to customize this value" msgstr "Luba kasutajatel seda väärtust muuta" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4215,7 +4214,7 @@ msgid "Character set of the file" msgstr "Faili märgitabel" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formaat" @@ -4513,7 +4512,7 @@ msgstr "Navigeerimise raam" msgid "Customize appearance of the navigation frame" msgstr "Muuda navigeerimise raami välimust" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Serverid" @@ -5841,7 +5840,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "Määrab, kas päringukast jääb ekraanile pärast päringu saatmist" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Säilita päringu kast" @@ -6171,22 +6170,22 @@ msgstr "%s laiend on puudu. Palun kontrolli oma PHP seadistust." msgid "possible deep recursion attack" msgstr "võimalik tõsine rünnak" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server ei vasta (või kohaliku serveri sokkel ei ole õigesti seadistatud)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Server ei vasta." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detailid..." @@ -6241,8 +6240,8 @@ msgstr "Loo tabel" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nimi" @@ -6343,8 +6342,8 @@ msgstr ", @TABLE@ saab tabeli nimeks" #, 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 "" "Seda väärtust on tõlgendatud %1$sstrftime%2$s'ga ja seetõttu saad kasutada " "aja vormindamise sõne. Lisaks toimuvad järgnevad muudatused: %3$s. Ülejäänud " @@ -6355,7 +6354,7 @@ msgid "use this for future exports" msgstr "kasuta seda edasistel eksportimistel" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Faili märgitabel:" @@ -6866,8 +6865,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 kohta leiab dokumentatsiooni ja edasist teavet %sPrimeBase XT kodulehelt" "%s." @@ -6929,7 +6928,7 @@ msgstr "Sündmus" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definitsioon" @@ -6990,7 +6989,7 @@ msgstr "Näita MIME-tüüpe" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7206,8 +7205,8 @@ msgstr "Ekspordi sisu" msgid "No data found for GIS visualization." msgstr "GIS visualiseerimiseks andmeid ei leitud." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)." @@ -7379,77 +7378,77 @@ msgstr "SQL ühilduvuse meetod:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ära kasuta nulliliste väärtuste puhul AUTO_INCREMENT" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Peida" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binaarne" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Oma pikkuse tõttu
    ei pruugi see veerg olla muudetav" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binaarne - ära muuda" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "veebiserveri üleslaadimiskataloogi" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Jätka %s rea lisamist" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "ja siis" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Lisa uue reana" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Lisa uue reana ja ignoreeri vigu" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Näita lisamise päringut" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Ühelt väärtuselt teisele liikumiseks kasuta TAB-klahvi või mujale " "liikumiseks kasuta CTRL + nooled" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" @@ -7473,7 +7472,7 @@ msgid "To" msgstr "Kohta" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Saada" @@ -7489,7 +7488,7 @@ msgstr "Lisa eesliide" msgid "Do you really want to execute the following query?" msgstr "Kas tõesti tahad käivitada selle päringu?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Ei muudetud" @@ -7740,7 +7739,7 @@ msgid "" msgstr "" "Palun loe dokumentatsioonist, kuidas uuendada oma column_comments tabelit" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Järjehoidjaga SQL päring" @@ -7789,6 +7788,10 @@ msgstr "Uuendatud seadistuse faili laadimiseks logi phpMyAdmini uuesti sisse." msgid "no description" msgstr "kirjeldus puudub" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Ära vali ühtegi" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Alluva seadistus" @@ -7825,8 +7828,8 @@ msgstr "Ülema staatus" msgid "Slave status" msgstr "Alluva staatus" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Muutuja" @@ -7853,7 +7856,7 @@ msgstr "Kõik kasutajad" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Kasuta tekstivälja" @@ -7886,10 +7889,10 @@ msgid "Generate Password" msgstr "Genereeri parool" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7900,7 +7903,7 @@ msgstr "Järgnev päring ebaõnnestus: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Vabanda, meil ei õnnestunud kustutatud sündmust taastada." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Varundatud päring oli:" @@ -7915,7 +7918,7 @@ msgstr "%1$s sündmust on muudetud." msgid "Event %1$s has been created." msgstr "%1$s sündmus on loodud." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "Sinu taotluse töötlemisel esines üks või mitu viga:" @@ -7924,14 +7927,14 @@ msgstr "Sinu taotluse töötlemisel esines üks või mitu viga:" msgid "Edit event" msgstr "Muuda sündmust" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Taotluse töötlemisel esines viga" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detailid" @@ -7944,7 +7947,7 @@ msgstr "Sündmuse nimi" msgid "Event type" msgstr "Sündmuse tüüp" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Muuda väärtuseks %s" @@ -7971,13 +7974,13 @@ msgstr "Lõpp" msgid "On completion preserve" msgstr "Lõpetamisel säilita" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Määraja" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Määraja peab olema formaadis \"kasutajanimi@hostinimi\"" @@ -8002,7 +8005,7 @@ msgstr "Sa pead andma sündmusele õige tüübi." msgid "You must provide an event definition." msgstr "Sa pead andma sündmuse definitsiooni." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Uus" @@ -8022,7 +8025,7 @@ msgstr "Sündmuse ajastaja staatus" msgid "Returns" msgstr "Naases" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8034,89 +8037,89 @@ msgstr "" "käivitamine võib ebaõnnestuda![/strong] Probleemide vältimiseks kasuta palun " "täiustatud 'mysqli' laiendit." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Vale funktsiooni tüüp: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Vabanda, me ei suutnud kustutatud funktsiooni taastada." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "%1$s funktsiooni on muudetud." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "%1$s funktsioon on loodud." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Muuda funktsiooni" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Funktsiooni nimi" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parameetrid" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Suund" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Pikkus/Väärtused" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Lisa parameeter" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Kustuta viimane parameeter" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Pöördumise tüüp" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Pöördumise pikkus/väärtused" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Pöördumise valikud" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Ette määratud" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Turvalisuse tüüp" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL andmete juurdepääs" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Sa pead andma funktsiooni nime" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Parameetrile anti vale suund \"%s\"." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8124,37 +8127,37 @@ msgstr "" "Sa pead andma ENUM, SET, VARCHAR ja VARBINARY tüüpi funktsiooni " "parameetritele pikkuse/väärtused." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Sa pead andma igale funktsiooni parameetrile nime ja tüübi." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Sa pead andma funktsioonile õige pöördumise tüübi." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Sa pead andma funktsiooni definitsiooni." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "Toimingu viimane käsk mõjutas %d rida" msgstr[1] "Toimingu viimane käsk mõjutas %d rida" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "%s funktsiooni käivitamise tulemused" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Käivita funktsioon" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Funktsiooni parameetrid" @@ -8437,7 +8440,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Tundmatu keel: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Praegune server" @@ -8468,50 +8471,50 @@ msgstr "Sihtandmebaas" msgid "Click to select" msgstr "Kliki, et valida" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Teosta SQL päring(ud) %s serveris" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Teosta SQL päring(ud) %s andmebaasis" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Puhasta" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Veerud" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Asenda samanimelise järjehoidjaga" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Ära muuda seda päringut väljaspool akent" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Eraldaja" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Näita seda päringut siin uuesti" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Ainult vaata" @@ -8613,7 +8616,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -8664,12 +8667,12 @@ msgid "As defined:" msgstr "Nagu määratud:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primaarne" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Täistekst" @@ -8682,12 +8685,12 @@ msgstr "esimene" msgid "after %s" msgstr "peale %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Lisa %s veerg(u)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Pead lisama vähemalt ühe veeru." @@ -8742,7 +8745,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Näitab selle pildi allalaadimise linki." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8916,8 +8919,8 @@ msgid "Protocol version" msgstr "Protokolli versioon" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Kasutaja" @@ -9030,8 +9033,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "phpMyAdmini seadistuse salvestus ei ole lõplikult seadistatud, mõned " -"laiendatud võimalused on aktiveerimata. Põhjuse saad teada, kui vajutad " -"%ssiia%s." +"laiendatud võimalused on aktiveerimata. Põhjuse saad teada, kui vajutad %" +"ssiia%s." #: main.php:357 #, php-format @@ -9048,18 +9051,18 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe " -"%sdokumentatsioonist%s." +"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe %" +"sdokumentatsioonist%s." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Andmebaasid puuduvad" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "Filtreeri andmebaase nime alusel" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtreeri tabeleid nime alusel" @@ -9080,7 +9083,7 @@ msgstr "Näita/Peida vasak menüü" msgid "Save position" msgstr "Salvesta asukoht" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Loo seos" @@ -9140,37 +9143,37 @@ msgstr "Peida/Näita tabeleid, millel puudub seos" msgid "Number of tables" msgstr "Tabelite hulk" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Kustuta seos" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Seose operaator" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "V.a" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "alampäring" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Muuda nimeks" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Uus nimi" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Agregaat" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Aktiivsed valikud" @@ -9332,13 +9335,13 @@ msgstr "Vali binaarne logi, mida soovid vaadata" msgid "Files" msgstr "Faili" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Lühenda näidatavaid päringuid" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" @@ -9354,7 +9357,7 @@ msgstr "Asukoht" msgid "Original position" msgstr "Algne asukoht" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informatsioon" @@ -9382,11 +9385,11 @@ msgstr "Ülema paljundamine" msgid "Slave replication" msgstr "Alluva paljundamine" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Luba statistika" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9633,7 +9636,7 @@ msgid "None" msgstr "Puudub" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Tabelipõhised õigused" @@ -9650,7 +9653,7 @@ msgstr "Administreerimine" msgid "Global privileges" msgstr "Globaalsed õigused" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Andmebaasipõhised õigused" @@ -9671,7 +9674,7 @@ msgstr "Sisselogimise teave" msgid "Do not change the password" msgstr "Ära muuda parooli" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Kasutajat ei leitud." @@ -9720,7 +9723,7 @@ msgstr "Valitud kasutajad on edukalt kustutatud." msgid "The privileges were reloaded successfully." msgstr "Õigused on edukalt uuesti laetud." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Muuda õigusi" @@ -9733,7 +9736,7 @@ msgid "Export all" msgstr "Ekspordi kõik" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Kõik" @@ -9750,123 +9753,123 @@ msgstr "%s õigused" msgid "Users overview" msgstr "Kasutajate ülevaade" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Kustuta valitud kasutajad" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tühista kasutajatelt kõik aktiivsed õigused ning seejärel kustuta need " "kasutajad." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta kasutajatega samanimelised andmebaasid." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 õigused otse MySQL'i õiguste tabelist. " "Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi " "muudetud. Sellisel juhul peaksid enne jätkamist %sõigused uuesti laadima%s." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat õiguste tabelist ei leitud." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Veerupõhised õigused" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Lisa õigusi järgnevas andmebaasis" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Metamärkide % ja _ täheliseks kasutamiseks peaksid nende ette asetama " "kurakaldkriipsu ehk \\" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Lisa õigusi järgnevas tabelis" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Muuda sisselogimise teavet / Kopeeri kasutajat" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Loo uus kasutaja samade õigustega ja ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... hoia eelmine alles." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... kustuta eelmine kasutajate tabelist." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... tühista eelmise kõik aktiivsed õigused ja seejärel kustuta see." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "... kustuta eelmine kasutajate tabelist ja seejärel lae õigused uuesti." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Andmebaas kasutajale" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Loo samanimeline andmebaas ja anna kõik õigused" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Anna kõik õigused metamärgiga nimele (kasutajanimi\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Anna kõik õigused "%s" andmebaasis" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Kasutajad, kellel on ligipääs "%s" andmebaasile" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globaalne" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "andmebaasipõhine" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "metamärk" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Kasutaja on lisatud." @@ -10148,30 +10151,30 @@ msgstr "Näita ainult 'alert' väärtusi" msgid "Filter by category..." msgstr "Filtreeri kategooria alusel..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Näita vormindamata väärtusi" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Seotud lingid:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Käivita analüüsija" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Juhendid" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" "Kontrollsüsteem analüüsib serveri staatuse muutujaid ja annab soovitusi." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10180,7 +10183,7 @@ msgstr "" "Pane tähele, et kuigi see süsteem annab soovitusi lihtsate arvutuste alusel, " "on siiski rusikareegel, et need ei pruugi tingimata su süsteemile rakenduda." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10190,7 +10193,7 @@ msgstr "" "(lugedes dokumentatsiooni) ja kuidas tehtud muudatusi tagasi võtta. Halb " "muudatus võib kaasa tuua jõudluse languse." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10201,31 +10204,31 @@ msgstr "" "saavutatud mingit praktiliselt mõõdetavat arengut." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Päringud alates käivitumisest: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Käsud" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Võrguliiklus alates käivitumisest: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "See MySQL server on töötanud %1$s. See käivitus %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10233,15 +10236,15 @@ msgstr "" "See MySQL server töötab paljundamisel ülemana ja alluvana." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "See MySQL server töötab paljundamisel ülemana." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "See MySQL server töötab paljundamisel alluvana." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10249,11 +10252,11 @@ msgstr "" "Lisateabe saamiseks serveri paljundamise staatuse kohta, palun vaata paljundamise sektsiooni." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Paljundamise staatus" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10261,35 +10264,35 @@ msgstr "" "Hõivatud serveris võib baitide lugeja olla ülekoormatud ja seetõttu MySQL " "serveri poolt koostatud statistika ei pruugi õige olla." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Vastu võetud" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Saadetud" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Maks. paralleelühendusi" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Ebaõnnestunud katseid" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Katkestatud" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Käsk" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10297,11 +10300,11 @@ msgstr "" "Ühenduste hulk, mis katkestati seetõttu, et klient lahkus liinilt ilma " "ühendust korralikult sulgemata." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ühenduste hulk, millel ei õnnestunud MySQL serveriga ühendada." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10311,17 +10314,17 @@ msgstr "" "ületas binlog_cache_size väärtuse ja mis kasutasid ülekannete käskude " "salvestamiseks ajutist faili." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ühenduste hulk, mis üritas (edukalt või mitte) ühendada MySQL serveriga." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10333,11 +10336,11 @@ msgstr "" "suurendada tmp_table_size väärtust, et ajutised tabelid oleksid " "mälupõhised, mitte kettapõhised." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Mysqld poolt loodud ajutiste failide hulk." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10345,7 +10348,7 @@ msgstr "" "Mälupõhiste ajutiste tabelite hulk, mis on loodud automaatselt serveri poolt " "käskude täitmise ajal." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10353,7 +10356,7 @@ msgstr "" "INSERT DELAYED käsuga kirjutatud ridade hulk, millel esines mõni viga " "(tõenäoliselt korduv võti)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10361,23 +10364,23 @@ msgstr "" "Kasutusel olevate INSERT DELAYED töötleja lõimude hulk. Iga erinev tabel, " "mis kasutab INSERT DELAYED käsku, saab endale isikliku lõimu." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Kirjutatud INSERT DELAYED ridade hulk." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Käivitatud FLUSH käskude hulk." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude hulk." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Tabelist kustutatud ridade hulk." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10387,7 +10390,7 @@ msgstr "" "nimega tabelit. Seda nimetatakse avastamiseks. Handler_discover näitab, mitu " "korda on tabeleid avastatud." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10397,7 +10400,7 @@ msgstr "" "tähendada seda, et server teeb väga palju täielikke indeksite kontrolle. " "Näiteks SELECT veerg1 FROM tabel viitab, et veerg1 on indekseeritud." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10405,7 +10408,7 @@ msgstr "" "Võtmel põhineva rea lugemise taotluste hulk. Kui see on kõrge, siis on see " "hea näitaja, et sinu päringud ja tabelid on korralikult indekseeritud." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10414,7 +10417,7 @@ msgstr "" "Võtme järjekorras järgmise rea lugemise taotluste hulk. See on suurem, kui " "pärid kitsendatud indekseeritud veergu või teed indeksi kontrolli." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10422,7 +10425,7 @@ msgstr "" "Võtme järjekorras eelmise rea lugemise taotluste hulk. Seda lugemise " "meetodit kasutatakse peamiselt ORDER BY ... DESC optimeerimiseks." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10434,7 +10437,7 @@ msgstr "" "palju päringuid, millega peab MySQL kontrolliga terveid tabeleid või kasutad " "liitmisi, mis ei kasuta võtmeid korralikult." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10446,35 +10449,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud ei ole kirjutatud selliselt, et " "need kasutaksid ära indeksid, mis sul on." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Sisemiste ROLLBACK käskude hulk." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Tabeli rea uuendamise taotluste hulk." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Tabelisse rea lisamise taotluste hulk." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Andmeid (räpased või puhtad) sisaldavate lehtede hulk." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Hetkel räpaseid andmeid sisaldavate lehtede hulk." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Puhvertsooni lehtede hulk, mida on taotletud tühjendama." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Vabade lehtede hulk." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10484,7 +10487,7 @@ msgstr "" "loetakse või kirjutatakse või mida ei saa mingil muul põhjusel tühjendada " "ega eemaldada." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10496,11 +10499,11 @@ msgstr "" "valemiga Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Puhvertsooni kogumaht lehtedes." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10508,7 +10511,7 @@ msgstr "" "InnoDB algatatud \"juhuslike\" ettelugemiste hulk. See juhtub siis, kui " "päring peab kontrollima palju tabeleid, aga juhuslikus järjekorras." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10516,11 +10519,11 @@ msgstr "" "InnoDB algatatud järjestike ettelugemiste hulk. See juhtub siis, kui InnoDB " "teeb järjestikulist kogu tabeli kontrolli." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB poolt tehtud loogiliste lugemise taotluste hulk." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10528,7 +10531,7 @@ msgstr "" "Loogiliste lugemiste hulk, mida InnoDB puhvertsoonist teha ei saanud ja mida " "pidi tegema ühelehelise lugemisena." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10542,51 +10545,51 @@ msgstr "" "palju veel ootama peab. Kui puhvertsooni maht on õigesti seadistatud, siis " "see väärtus peaks olema madal." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB puhvertsooni tehtud kirjutamiste hulk." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Seni tehtud fsync() operatsioonide hulk." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Hetkel järjekorras olevate fsync() operatsioonide hulk." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Hetkel järjekorras olevate lugemiste hulk." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Hetkel järjekorras olevate kirjutamiste hulk." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Seni loetud andmete koguhulk baitides." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Andmete lugemiste koguhulk." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Andmete kirjutamiste koguhulk." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Seni kirjutatud andmete koguhulk baitides." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "Topeltkirjutamise operatsioonide jaoks kirjutatud lehtede hulk." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "Teostatud topeltkirjutamise operatsioonide hulk." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10594,35 +10597,35 @@ msgstr "" "Ootamiste hulk, mida on põhjustanud väike logi puhver ja mille tõttu on enne " "jätkamist pidanud ootama selle tühjendamist." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Logi kirjutamise taotluste hulk." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Logi failisse füüsiliste kirjutamiste hulk." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "fsync() poolt logi failisse tehtud kirjutamiste hulk." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Järjekorras olevate logifailide fsync() operatsioonide hulk." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Järjekorras olevad logi faili kirjutamised." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Logi faili kirjutatud baitide hulk." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Loodud lehtede hulk." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10630,51 +10633,51 @@ msgstr "" "Sisseehitatud InnoDB lehe maht (vaikimisi 16KB). Siin lehel on loendatud " "mitmeid väärtusi. Lehe maht lubab neid kergesti baitidesse teisendada." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Loetud lehtede hulk." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Kirjutatud lehtede hulk." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Hetkel ootel olevate rea lukustamiste hulk." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise keskmine aeg millisekundites." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rea lukustamise saamiseks kulutatud aeg kokku millisekundites." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise maksimaalne aeg millisekundites." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Ootama pidanud rea lukustamised kokku." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tabelitest kustutatud ridade hulk." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tabelitesse lisatud ridade hulk." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tabelitest loetud ridade hulk." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tabelites uuendatud ridade hulk." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10682,7 +10685,7 @@ msgstr "" "Võtme puhvris võtmeplokkide hulk, mida on küll muudetud, kuid pole veel " "kettale tühjendatud. Seda kasutatakse kui Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10690,7 +10693,7 @@ msgstr "" "Võtmepuhvris kasutamata plokkide hulk. Seda väärtust saad kasutada kasutusel " "oleva võtme puhvri mahu tuvastamiseks." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10700,15 +10703,15 @@ msgstr "" "näitab maksimaalset plokkide hulka, mis on kunagi samaaegselt kasutusel " "olnud." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Kasutatud võtme puhvri protsent (arvutatud väärtus)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Puhvrist võtmeploki lugemise taotluste hulk." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10718,7 +10721,7 @@ msgstr "" "tõenäoliselt on sinu key_buffer_size väärtus liiga väike. Puhvri puudujääki " "saab arvutada valemiga Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10726,22 +10729,22 @@ msgstr "" "Võtme puhvri puudujäägi arvutamisel võrreldakse füüsilisi lugemisi lugemise " "taotlustega (arvutatud väärtus)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Puhvrisse võtmeploki kirjutamise taotluste hulk." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Kettale võtmeploki füüsiliste kirjutamiste hulk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Füüsiliste kirjutamiste ja kirjutamise taotluste võrdlemise protsent " "(arvutatud väärtus)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10751,7 +10754,7 @@ msgstr "" "on kasulik erinevate päringuplaanide kulu võrdlemisel sama päringuga. " "Vaikimisi väärtus 0 tähendab, et ühtegi päringut pole veel koostatud." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10759,12 +10762,12 @@ msgstr "" "Maksimaalne ühenduste hulk, mis on korraga kasutusel olnud alates serveri " "käivitamisest." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "INSERT DELAYED järjekordades kirjutamisvalmis olevate ootel ridade hulk." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10772,19 +10775,19 @@ msgstr "" "Avatud tabelite hulk. Kui see on liiga suur, siis sinu tabeli puhvri väärtus " "on tõenäoliselt liiga väike." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Avatud failide hulk." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Avatud striimide hulk (kasutatakse peamiselt sisselogimisel)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Avatud tabelite hulk." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10794,19 +10797,19 @@ msgstr "" "killustumise probleemidele, mida saab lahendada FLUSH QUERY CACHE käsu " "täitmisega." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Päringu puhvri jaoks vaba mälu hulk." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Puhvri kasutamise hulk." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Puhvrisse lisatud päringute hulk." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10818,7 +10821,7 @@ msgstr "" "puhver kasutab hiljutise kasutamise (LRU) strateegiat, et otsustada, milline " "päring puhvrist kustutada." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10826,19 +10829,19 @@ msgstr "" "Puhverdamata päringute hulk (pole puhverdatav või ei puhverdatud " "query_cache_type sätte tõttu)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Puhvris registreeritud päringute hulk." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Päringu puhvris olevate plokkide koguhulk." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Töökindla paljundamise staatus (pole veel kasutusele võetud)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10846,11 +10849,11 @@ msgstr "" "Indekseid mittekasutatavate liitmiste hulk. Kui see väärtus ei ole 0, siis " "peaksid hoolikalt kontrollima oma tabelite indekseid." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Viidete tabelis piirkondlikku otsimist kasutanud liitmiste hulk." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10859,7 +10862,7 @@ msgstr "" "rida. (Kui see ei ole 0, siis peaksid hoolikalt kontrollima oma tabelite " "indekseid.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10867,15 +10870,15 @@ msgstr "" "Esimeses tabelis piirkonda kasutanud liitmiste hulk. (Tavaliselt pole " "kriitiline, kui see on suur.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Esimeses tabelis täielikku kontrolli teinud liitmiste hulk." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Alluva SQL lõimu poolt hetkel avatud ajutiste tabelite hulk." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10883,24 +10886,24 @@ msgstr "" "Paljundamisel alluva SQL lõimu poolt ülekannete kordamise hulk kokku (alates " "käivitusest)." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "See on ON, kui see server on alluv, mis on ühendatud ülemaga." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Lõimude hulk, mille loomiseks kulus rohkem, kui slow_launch_time sekundit." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Päringute hulk, milleks kulus rohkem aega, kui long_query_time sekundit." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10910,23 +10913,23 @@ msgstr "" "suur, siis peaksid kaaluma süsteemi muutuja sort_buffer_size väärtuse " "vähendamist." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Piirkondlike sorteerimiste hulk." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Sorteeritud ridade hulk." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Tabeli kontrollimisel tehtud sorteerimiste hulk." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Koheselt teostatud tabeli lukustamiste hulk." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10938,7 +10941,7 @@ msgstr "" "peaksid kõigepealt optimeerima oma päringuid ja seejärel kas poolita oma " "tabel või tabelid või kasuta paljundamist." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -10948,11 +10951,11 @@ msgstr "" "valemiga Threads_created/Connections. Kui see väärtus on punane, siis " "peaksid vähendama oma thread_cache_size väärtust." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Hetkel avatud ühenduste hulk." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10963,47 +10966,47 @@ msgstr "" "peaksid suurendama thread_cache_size väärtust. (Tavaliselt ei anna see " "märkimisväärset jõudluse kasvu, kui sul on hea lõimu kasutus.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Lõimu puhvri kasutushulk (arvutatud väärtus)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Lõimude hulk, mis ei ole jõude." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Alusta jälgimist" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Juhendid/Paigaldus" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Diagrammide korrastamine/muutmine on valmis" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Lisa diagramm" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Korrasta/muuda diagramme" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Uuendamise sagedus" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Diagrammi veerud" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Diagrammi korrastus" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11011,15 +11014,15 @@ msgstr "" "Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. " "Kui paigaldamine on keeruline, võid seda eksportida." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Lähtesta vaikimisi väärtustele" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Jälgija juhendid" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11033,7 +11036,7 @@ msgstr "" "general_log. Pane siiski tähele, et general_log toodab palju andmeid ja " "suurendab serveri laadimisaega kuni 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11044,11 +11047,11 @@ msgstr "" "andmebaasi logide analüüsimiseks phpMyAdminiga. Tabelisse logimist toetab " "MySQL 5.1.6 ja uuem. Siiski võid kasutada serveri diagrammi võimalust." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Kasuta jälgijat:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11058,7 +11061,7 @@ msgstr "" "tagant. 'Sätted' all võid diagramme lisada ja muuta värskendussagedust või " "eemaldada diagrammi, kasutades hammasratta ikooni vastaval diagrammil." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11070,11 +11073,11 @@ msgstr "" "diagrammi. Kui see on kinnitatud, siis see loob rühmitatud päringute tabeli, " "kust võid valida edasiseks analüüsimiseks sobivad SELECT käsud." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Palun pane tähele:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11086,87 +11089,87 @@ msgstr "" "on soovitatav valida ainult üks lühike ajavahemik ja keela general_log ja " "tühjenda selle tabel, kui jälgimist pole enam tarvis." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Ettemääratud diagramm" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Staatuse muutuja(d)" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Vali seeria:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Tavaliselt jälgitav" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "või tipi muutuja nimi:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Näita eristatava väärtusena" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Kasuta jagajat" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Lisa andmete väärtustele ühikud" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Lisa see seeria" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Puhasta seeria" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Seeriad diagrammis:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Logi statistika" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Valitud ajavahemik:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Otsi ainult SELECT,INSERT,UPDATE ja DELETE käske" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Parema grupeerimise saavutamiseks kustuta INSERT käskudest muutuja andmed" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Vali logi, millest statistikat luua." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Tulemused on grupeeritud päringu teksti alusel." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Päringu analüüsija" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekundit" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11540,8 +11543,8 @@ msgid "" "(currently %d)." msgstr "" "Kui %ssisselogimise küpsise kehtivus%s on suurem, kui 1440 sekundit, siis " -"see võib põhjustada juhuslikku seansi aegumist, kui %ssession.gc_maxlifetime" -"%s väärtus on sellest madalam (praegu %d)." +"see võib põhjustada juhuslikku seansi aegumist, kui %ssession.gc_maxlifetime%" +"s väärtus on sellest madalam (praegu %d)." #: setup/lib/index.lib.php:306 #, php-format @@ -11570,8 +11573,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - " -"%shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. " +"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - %" +"shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. " "Siiski ei pruugi IP-põhine kaitse olla usaldusväärne, kui sinu IP kuulub " "ISP'le, kellega on ühendatud koos sinuga tuhandeid kasutajaid." @@ -11937,35 +11940,35 @@ msgstr "Kontrolli pärinevust:" msgid "Showing tables" msgstr "Tabelite näitamine" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Ruumi kasutus" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektiivne" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Rea statistika" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "staatiline" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dünaamiline" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Rea pikkus" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Rea laius" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Järgmine automaatne indeks" @@ -11989,7 +11992,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Võõrvõtme piirang" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Ruumiline" @@ -12039,49 +12042,49 @@ msgstr "Indeks on lisatud kohas %s" msgid "Show more actions" msgstr "Näita rohkem tegevusi" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Liiguta veergusid" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Veergusid saad liigutada nende lohistamisega üles ja alla." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Muuda vaadet" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Seose vaade" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Soovita tabeli struktuuri" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Lisa veerg" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Tabeli lõppu" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Tabeli algusesse" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Peale %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Loo indeks  %s veergudesse" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partitsioneeritud" @@ -12611,11 +12614,11 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" -"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s" -"%%. See peaks olema üle 80%%" +"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s%" +"%. See peaks olema üle 80%%" #: libraries/advisory_rules.txt:174 msgid "Query cache fragmentation" @@ -12764,8 +12767,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% kõikidest sorteerimistest põhjustab ajutisi tabeleid. See väärtus peaks " "jääma alla 10%%." @@ -13342,8 +13345,8 @@ msgstr "" #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla " -"2%%" +"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla 2%" +"%" #: libraries/advisory_rules.txt:413 msgid "Rate of aborted clients" diff --git a/po/eu.po b/po/eu.po index 68eb99c922..31bc8a8ae7 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-02 12:41+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: Weblate 0.10\n" @@ -39,54 +39,55 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Bilatu" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Joan" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 #, fuzzy msgid "Keyname" msgstr "Giltzaren izena" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Deskribapena" @@ -119,13 +120,13 @@ msgstr "Datu-basearen iruzkina: " msgid "Table comments" msgstr "Taularen iruzkinak" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -134,30 +135,30 @@ msgstr "Taularen iruzkinak" msgid "Column" msgstr "Zutabea" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Mota" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -195,8 +196,8 @@ msgstr "Esteka:" msgid "Comments" msgstr "Iruzkinak" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -205,15 +206,15 @@ msgstr "Iruzkinak" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ez" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -228,8 +229,8 @@ msgstr "Ez" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -244,11 +245,11 @@ msgstr "Ikusi datu-basearen iraulketa (eskema)" msgid "No tables found in database." msgstr "Ez da taularik aurkitu datu-basean." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Dena hautatu" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 #, fuzzy msgid "Unselect All" msgstr "Desautatu dena" @@ -326,12 +327,12 @@ msgstr "Murrizketak gehitu" msgid "Switch to copied database" msgstr "Kopiatutako datu-basea hautatu" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Ordenamendua" @@ -354,17 +355,17 @@ msgstr "Aldatu edo esportatu erlazio-eskema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Taula" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Errenkadak" @@ -379,21 +380,21 @@ msgstr "lanean" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Sortzea" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Azken eguneraketa" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Azken egiaztapena" @@ -456,7 +457,7 @@ msgid "Del" msgstr "Ezabatu" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Edo" @@ -497,87 +498,87 @@ msgstr "Kontsulta bidali" msgid "Access denied" msgstr "Sarbidea ukatua" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "hitz hauetariko bat gutxienez" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "hitz guztiak" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "esaldi zehatza" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "adierazpen erregular moduan" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Bilaketaren emaitzak: \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s emaitza %s taulan" -msgstr[1] "%s emaitzak %s taulan" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Arakatu" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s taulako aukeratuak ezabatu" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Ezabatu" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Guztira: %s emaitza" msgstr[1] "Guztira: %s emaitza" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s emaitza %s taulan" +msgstr[1] "%s emaitzak %s taulan" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Arakatu" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "%s taulako aukeratuak ezabatu" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Ezabatu" + +#: db_search.php:362 msgid "Search in database" msgstr "Datu-basean bilatu" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Aurkitu:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Hitzak zuriune karakterrarekin berezituta daude (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Taulen barnean:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Zutabearen barnean:" @@ -616,18 +617,18 @@ msgstr "Jarraipena ez dago aktibatuta." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation" -"%s erreferentzia egin." +"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation%" +"s erreferentzia egin." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Ikusipegia" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -637,93 +638,89 @@ msgstr "Ihardetsi" msgid "Sum" msgstr "Gehiketa" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s da MySQL zerbitzarian lehenetsitako biltegiratzeko mota." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Ikurdunak:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Guztiak egiaztatu" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Desautatu dena" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esportatu" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Hutsik" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Ezabatu" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Taula egiaztatu" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Taula optimizatu" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Taula konpondu" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Taula aztertu" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Gehitu aurrizkia taulari" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Taularen aurrizkia aldatu" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Taula aurrizkiarekin kopiatu" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Datu-hiztegia" @@ -736,9 +733,9 @@ msgstr "Taulak jarraipenarekin" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Datu-basea" @@ -755,17 +752,17 @@ msgstr "Sortua" msgid "Updated" msgstr "Eguneratua" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Egoera" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Ekintza" @@ -797,7 +794,7 @@ msgstr "Egitura kaptura" msgid "Untracked tables" msgstr "Jarraipen gabeko taulak" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Taularen jarraipena egin" @@ -932,8 +929,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -996,13 +993,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Zure SQL-kontsula arrakastaz burutu da" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Itzuli" @@ -1094,8 +1091,8 @@ msgstr "Pasahitza hutsik dago!" msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Gehitu erabiltzailea" @@ -1113,7 +1110,7 @@ msgid "Close" msgstr "Itxi" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1142,13 +1139,13 @@ msgstr "Datu estatikoak" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Gutira" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Beste" @@ -1180,7 +1177,7 @@ msgstr "Zerbitzariaren trafikoa (KiBtan)" msgid "Connections since last refresh" msgstr "Konexio azken freskatzetik" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Prozesuak" @@ -1245,13 +1242,13 @@ msgstr "Sistemaren swap-a" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1309,7 +1306,7 @@ msgstr "" msgid "Bytes received" msgstr "Jasota" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Konexioak" @@ -1351,11 +1348,11 @@ msgstr "%s taula" msgid "Questions" msgstr "Eragiketak" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafikoa" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1381,8 +1378,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Batez" @@ -1482,7 +1479,7 @@ msgstr "Erlazioen ezaaugarri orokorrak" msgid "Current settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1570,7 +1567,7 @@ msgstr "SQL-a azaldu" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Denbora" @@ -1677,10 +1674,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Esportatu" @@ -1737,9 +1734,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1770,9 +1767,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Zuzena" @@ -1873,7 +1870,7 @@ msgstr "%s ezabatzen" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET editorea" @@ -1914,8 +1911,8 @@ msgstr "SQL kontsulta" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Aldatu" @@ -1930,7 +1927,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2500,16 +2497,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "segunduko" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "minutuko" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "orduko" @@ -2625,8 +2622,8 @@ msgstr "Gakoaren arabera ordenatu" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Eragiketak" @@ -2689,7 +2686,7 @@ msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Hil" @@ -2716,30 +2713,30 @@ msgstr "guztira" msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Esteka aurkitugabea" @@ -2810,56 +2807,56 @@ msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." msgid "Javascript must be enabled past this point" msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Ez dago indizerik definituta!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indizeak" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Bakarra" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalitatea" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Iruzkinak" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Lehen mailako gakoa ezabatu da" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "%s indizea ezabatu da" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Datu-baseak" @@ -2869,7 +2866,7 @@ msgstr "Datu-baseak" msgid "Server" msgstr "Zerbitzaria" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2882,105 +2879,105 @@ msgstr "Zerbitzaria" msgid "Structure" msgstr "Egitura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Txertatu" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Eragiketak" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Kontsulta" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Pribilegioak" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Erabiltzailea" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binarioa " -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Aldagaiak" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Karaktere-multzoa" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Errorea" @@ -3025,71 +3022,71 @@ msgstr "Taularik ez" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Datu-basean bilatu" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Datu-basean bilatu" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "%s taula %s-(e)ra berrizendatua izan da" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3097,23 +3094,23 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funtzioak" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "Eragiketak" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "balioa" @@ -3123,7 +3120,7 @@ msgstr "balioa" msgid "Table Search" msgstr "Bilatu" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3258,14 +3255,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3523,8 +3520,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3635,12 +3632,12 @@ msgstr "Taulak" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Datuak" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Arazteko hondakina" @@ -3755,18 +3752,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL kontsulta" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3854,7 +3851,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3865,8 +3862,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" @@ -4063,7 +4060,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4342,7 +4339,7 @@ msgid "Character set of the file" msgstr "Fitxategiaren karaktereen kodeketa:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formatoa" @@ -4666,7 +4663,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5933,7 +5930,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL kontsulta" @@ -6246,21 +6243,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6318,8 +6315,8 @@ msgstr "Orri berri bat sortu" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Izena" @@ -6440,8 +6437,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:285 @@ -6449,7 +6446,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Fitxategiaren karaktereen kodeketa:" @@ -6929,8 +6926,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7006,7 +7003,7 @@ msgstr "Bidalita" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7078,7 +7075,7 @@ msgstr "MIME-mota erabilgarriak" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Zerbitzaria" @@ -7285,8 +7282,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." @@ -7451,77 +7448,77 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarioa" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Bere luzeragatik,
    eremu hau ez da editagarria " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binarioa - ez editatu" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "eta orduan" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Itzuli" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7549,7 +7546,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Bidali" @@ -7567,7 +7564,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Benetan nahi al duzu " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Aldaketarik ez" @@ -7827,7 +7824,7 @@ msgstr "" "Mesedez, Dokumentazioa begiratu zure zutabeen iruzkinen Taula nola " "eguneratzeko" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Kontsulta gogokoetan gordea" @@ -7874,6 +7871,10 @@ msgstr "" msgid "no description" msgstr "Deskribapenik ez" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Desautatu dena" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7909,8 +7910,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Aldagaia" @@ -7936,7 +7937,7 @@ msgstr "Edozein erabiltzaile" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Testu-eremua erabili" @@ -7967,10 +7968,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7981,7 +7982,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7997,7 +7998,7 @@ msgstr "%s taula ezabatu egin da" msgid "Event %1$s has been created." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8007,16 +8008,16 @@ msgstr "" msgid "Edit event" msgstr "Bidalita" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prozesuak" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8031,7 +8032,7 @@ msgstr "Esportazio mota" msgid "Event type" msgstr "Esportazio mota" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8066,13 +8067,13 @@ msgstr "Amaiera" msgid "On completion preserve" msgstr "\"Insert\"ak osatu" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8097,7 +8098,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8119,7 +8120,7 @@ msgstr "" msgid "Returns" msgstr "Taularen hobespenak" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8127,137 +8128,137 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Zutabe izenak" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Sortzea" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Luzera/Balioak*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy msgid "Remove last parameter" msgstr "Taula berrizendatu izen honetara: " -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Luzera/Balioak*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Taularen hobespenak" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Kontsulta mota" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8575,7 +8576,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8610,52 +8611,52 @@ msgstr "Datu-basean bilatu" msgid "Click to select" msgstr "Egin klik hautatzeko" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "SQL kontsulta(k) exekutatu %s datu-basean" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "SQL kontsulta(k) exekutatu %s datu-basean" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Kontsulta hau ez idatzi gainean leihotik kanpo" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Kontsulta hau hemen berriz erakutsi" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Soilik ikusi" @@ -8767,7 +8768,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indizea" @@ -8822,12 +8823,12 @@ msgid "As defined:" msgstr "Honela definitua:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Lehen mailakoa" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Testu osoa" @@ -8841,13 +8842,13 @@ msgstr "" msgid "after %s" msgstr "%s(a)ren ondoren" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Gehitu %s zutabe" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8899,7 +8900,7 @@ msgid "Displays a link to download this image." msgstr "" "Irudi honi zuzendutako esketa bat erakusten du(blob deskarga zuzena, i.e.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9097,8 +9098,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Erabiltzailea" @@ -9225,17 +9226,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Datu-baserik ez" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Taularen \"Order By\" aldatu" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9259,7 +9260,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9324,47 +9325,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Erlazioen ikuspegia" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Esportatu" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "kontsultan" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Taula berrizendatu izen honetara: " -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Erabiltzaile-izena" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Sortu" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9542,13 +9543,13 @@ msgstr "" msgid "Files" msgstr "Eremuak" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Erakutsitako kontultak moztu" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" @@ -9564,7 +9565,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 #, fuzzy msgid "Information" msgstr "Saioa hasteko informazioa" @@ -9594,11 +9595,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Estatistikak gaitu" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9863,7 +9864,7 @@ msgid "None" msgstr "Batez" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" @@ -9880,7 +9881,7 @@ msgstr "Kudeaketa" msgid "Global privileges" msgstr "Pribilegio orokorrak" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" @@ -9900,7 +9901,7 @@ msgstr "Saioa hasteko informazioa" msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9951,7 +9952,7 @@ msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Editatu Pribilegioak" @@ -9966,7 +9967,7 @@ msgid "Export all" msgstr "Esportatu" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Edozein" @@ -9988,32 +9989,32 @@ msgstr "Pribilegioak" msgid "Users overview" msgstr "Erabiltzailearen info orokorra" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Baimendu" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Hautatutako erabiltzaileak baztertu" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " @@ -10021,49 +10022,49 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Pribilegioak gehitu datu-base honetan" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Pribilegioak gehitu taula honetan" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... mantendu aurrekoa." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... zaharra ezabatu erabiltzaileen tauletatik." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10071,41 +10072,41 @@ msgstr "" " ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" datu-basearen pribilegioak egiaztatu." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "orokorra" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "komodina" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy msgid "User has been added." msgstr "%s eremua ezabatu da" @@ -10390,49 +10391,49 @@ msgstr "Taulak erakutsi" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "Taulak erakutsi" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Erlazioak" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Kontsulta mota" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Funtzioak" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10440,118 +10441,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Sententziak" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Jasota" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Bidalita" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Erratutako saiakerak" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Deuseztatua" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Komandoa" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10559,78 +10560,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10638,7 +10639,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10646,42 +10647,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10689,33 +10690,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10724,243 +10725,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fitxategiaren karaktereen kodeketa:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10968,99 +10969,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11068,18 +11069,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11087,69 +11088,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Kontsulta mota" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Lar" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Gehitu %s zutabe" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Egilea:" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11158,7 +11159,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11166,18 +11167,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11185,11 +11186,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11197,89 +11198,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy msgid "Preset chart" msgstr "Taula berrizendatu izen honetara: " -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Taulak hautatu" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Erabiltzaile berria gehitu" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL kontsulta" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Errenkadaren estatistikak" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Taulak hautatu" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Kontsulta mota" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11287,7 +11288,7 @@ msgid_plural "%d seconds" msgstr[0] "segunduko" msgstr[1] "segunduko" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12060,35 +12061,35 @@ msgstr "Erreferentzien integritatea egiaztatu:" msgid "Showing tables" msgstr "Taulak erakutsi" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Erabilitako lekua" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Eraginkorra" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Errenkadaren estatistikak" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamikoa" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Errenkadaren luzera" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Errenkadaren tamaina" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12113,7 +12114,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12170,56 +12171,56 @@ msgstr "Indize bat gehitu gehitu zaio %s-(r)i" msgid "Show more actions" msgstr "PHP informazioa erakutsi" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Gehitu %s zutabe" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Inprimatzeko ikuspegia" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Erlazioen ikuspegia" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Taularen egituraren proposamena" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Gehitu %s zutabe" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Taularen amaieran" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Taularen hasieran" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s(a)ren ondoren" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Indize bat sortu  %s  zutabetan" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12737,8 +12738,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12866,8 +12867,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/fa.po b/po/fa.po index 072fa94317..b3f49ab1d3 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:19+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -35,53 +35,54 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "جستجو" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "تاييد" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "توضیحات" @@ -114,13 +115,13 @@ msgstr "توضيحات پایگاه داده: " msgid "Table comments" msgstr "توضيحات جدول" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -129,30 +130,30 @@ msgstr "توضيحات جدول" msgid "Column" msgstr "ستون" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "نوع" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -190,8 +191,8 @@ msgstr "پيوند به" msgid "Comments" msgstr "توضيحات" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -200,15 +201,15 @@ msgstr "توضيحات" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "خير" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -223,8 +224,8 @@ msgstr "خير" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -239,11 +240,11 @@ msgstr "نمايش الگوي پايگاه داده" msgid "No tables found in database." msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "انتخاب همه" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "عدم انتخاب همه" @@ -320,12 +321,12 @@ msgstr "اعمال محدودیت ها" msgid "Switch to copied database" msgstr "تعویض به پایگاه داده ی کپی شده" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "مقایسه" @@ -351,17 +352,17 @@ msgstr "ویرایش یا صدور نمای رابطه ای" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "جدول" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "سطرها" @@ -376,21 +377,21 @@ msgstr "in use" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "ایجاد" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "آخرین به روز رسانی" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "يا" @@ -496,89 +497,89 @@ msgstr "" msgid "Access denied" msgstr "دسترسي مجاز نيست" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "حداقل يكي از كلمات" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "تمامي كلمات" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "عبارت كامل" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "بعنوان مبين منظم(as regular expression)" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "نتيجه جستجوي \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s عبارت همتا در جدول %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "مشاهده" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "داده های همتا در جدول %s حذف شوند؟" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "حذف" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s عبارت همتا در جدول %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "مشاهده" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "داده های همتا در جدول %s حذف شوند؟" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "حذف" + +#: db_search.php:362 msgid "Search in database" msgstr "جستجو در پايگاه‌داده" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "نوع جستجو :" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "كلمات با علامت فاصله (\" \") جدا مي‌شوند." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "در جدول(هاي) :" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "در جدول:" @@ -617,8 +618,8 @@ msgstr "پیگردی فعال نمی باشد." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 مراجعه " "نمایید." @@ -628,7 +629,7 @@ msgstr "" msgid "View" msgstr "نمایش" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -638,97 +639,93 @@ msgstr "" msgid "Sum" msgstr "مجموع" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "موارد انتخاب‌شده :" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "انتخاب همه" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "عدم انتخاب همه" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "صدور" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "خالي كردن" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "حذف" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "بررسي جدول" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "بهينه‌سازي جدول" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "مرمت جدول" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "تحليل جدول" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "فرهنگ داده‌ها" @@ -741,9 +738,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "پايگاه داده" @@ -760,17 +757,17 @@ msgstr "ایجاد شده" msgid "Updated" msgstr "به روز شده" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "عمل" @@ -804,7 +801,7 @@ msgstr "فقط ساختار" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "بررسي جدول" @@ -954,8 +951,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1019,13 +1016,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "پرس و جوي SQL شما با موفقيت اجرا گرديد" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "بازگشت" @@ -1116,8 +1113,8 @@ msgstr "اسم رمز خالي است!" msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1139,7 +1136,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1169,13 +1166,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "جمع كل" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1207,7 +1204,7 @@ msgstr "نسخه سرور" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1274,13 +1271,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "مگا بايت" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "كيلوبايت" @@ -1336,7 +1333,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1378,11 +1375,11 @@ msgstr "%s جدول" msgid "Questions" msgstr "فارسي" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "Deleting %s" msgid "Settings" @@ -1409,8 +1406,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "خير" @@ -1509,7 +1506,7 @@ msgstr "تغيير" msgid "Current settings" msgstr "پرس و جوي SQL" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy msgid "Chart Title" msgstr "No tables" @@ -1596,7 +1593,7 @@ msgstr "شرح دادن SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "" @@ -1700,10 +1697,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "صدور" @@ -1758,9 +1755,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "لغو کردن" @@ -1789,9 +1786,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "تاييد" @@ -1890,7 +1887,7 @@ msgstr "در حال پاک کردن %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1932,8 +1929,8 @@ msgstr "پرس و جوي SQL" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "تغيير" @@ -1948,7 +1945,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2516,16 +2513,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "در ثانیه" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "در دقیقه" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "در ساعت" @@ -2640,8 +2637,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "عمليات" @@ -2699,7 +2696,7 @@ msgid "The row has been deleted" msgstr "سطر حذف گرديد ." #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Kill" @@ -2726,30 +2723,30 @@ msgstr "جمع كل" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "پيوند پيدا نشد" @@ -2818,56 +2815,56 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "فهرست‌ها" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "يكتا" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "توضيحات" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "كليد اصلي حذف گرديد" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "فهرست %s حذف گرديد" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "پايگاههاي داده" @@ -2877,7 +2874,7 @@ msgstr "پايگاههاي داده" msgid "Server" msgstr "سرور" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2890,106 +2887,106 @@ msgstr "سرور" msgid "Structure" msgstr "ساختار" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "درج" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "پرس و جو" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "امتيازات" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "كاربر" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "دودويي" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 #, fuzzy msgid "Variables" msgstr "متغییر" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "موتور" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "خطا" @@ -3032,71 +3029,71 @@ msgstr "No tables" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "جستجو در پايگاه‌داده" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "جستجو در پايگاه‌داده" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "جدول %s به %s تغيير نام داده‌شد" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3104,23 +3101,23 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "تابع" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "عمليات" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "مقدار" @@ -3130,7 +3127,7 @@ msgstr "مقدار" msgid "Table Search" msgstr "جستجو" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3265,14 +3262,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3529,8 +3526,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3638,12 +3635,12 @@ msgstr "جدولها" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "داده" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "" @@ -3752,18 +3749,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "پرس و جوي SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3857,7 +3854,7 @@ msgstr "" msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3867,8 +3864,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." @@ -4063,7 +4060,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4339,7 +4336,7 @@ msgid "Character set of the file" msgstr "مجموعه كاراكترهاي پرونده:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "قالب" @@ -4657,7 +4654,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5906,7 +5903,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "پرس و جوي SQL" @@ -6220,21 +6217,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6293,8 +6290,8 @@ msgstr "ساخت يك صفحه جديد" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "اسم" @@ -6412,8 +6409,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:285 @@ -6421,7 +6418,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "مجموعه كاراكترهاي پرونده:" @@ -6894,8 +6891,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6965,7 +6962,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7036,7 +7033,7 @@ msgstr "نمايش خصوصيات" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "ميزبان" @@ -7241,8 +7238,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." @@ -7407,75 +7404,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "دودويي" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "و سپس" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7503,7 +7500,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "ارسال" @@ -7521,7 +7518,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "آيا مطمئن هستيد " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7776,7 +7773,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7823,6 +7820,10 @@ msgstr "" msgid "no description" msgstr "no Description" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "عدم انتخاب همه" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7858,8 +7859,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "متغییر" @@ -7885,7 +7886,7 @@ msgstr "همه كاربران" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7916,10 +7917,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7930,7 +7931,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7946,7 +7947,7 @@ msgstr "جدول %s حذف گرديد" msgid "Event %1$s has been created." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7956,14 +7957,14 @@ msgstr "" msgid "Edit event" msgstr "افزودن يك كاربر جديد" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7978,7 +7979,7 @@ msgstr "نام كاربر" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8012,13 +8013,13 @@ msgstr "انتها" msgid "On completion preserve" msgstr "تمام وروديها" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8043,7 +8044,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8064,7 +8065,7 @@ msgstr "" msgid "Returns" msgstr "آمار پايگاههاي داده" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8072,134 +8073,134 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "نام ستونها" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "ایجاد" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "طول/مقادير*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "حذف پایگاه داده" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "طول/مقادير*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy msgid "Return options" msgstr "آمار پايگاههاي داده" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8502,7 +8503,7 @@ msgstr "rtl" msgid "Unknown language: %1$s." msgstr "زبانِ ناشناس : %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8537,53 +8538,53 @@ msgstr "جستجو در پايگاه‌داده" msgid "Click to select" msgstr "برای انتخاب کلیک کنبد" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "تقویم" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "نمايش دوباره اين پرس و جو در اينجا " -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8666,9 +8667,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
    اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
    (براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
    (براي مثال'\\\\xyz' يا 'a" +"\\'b')" #: libraries/tbl_properties.inc.php:89 msgid "" @@ -8678,7 +8679,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "فهرست" @@ -8709,9 +8710,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
    اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
    (براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
    (براي مثال'\\\\xyz' يا 'a" +"\\'b')" #: libraries/tbl_properties.inc.php:369 msgid "ENUM or SET data too long?" @@ -8733,12 +8734,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "اصلي" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "كاملا متن" @@ -8752,12 +8753,12 @@ msgstr "" msgid "after %s" msgstr "بعد از %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "افزودن ستون جديد" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8804,7 +8805,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8948,8 +8949,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "كاربر" @@ -9004,8 +9005,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " -"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " +"، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:286 msgid "" @@ -9072,17 +9073,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "تغيير جدول مرتب شده با" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9106,7 +9107,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9169,47 +9170,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "مرمت جدول" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "صدور" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "in query" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "بازناميدن جدول به" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "نام كاربر" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "ساختن" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy msgid "Active options" msgstr "عمل" @@ -9380,13 +9381,13 @@ msgstr "" msgid "Files" msgstr "ستونها" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9402,7 +9403,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "اطلاعات" @@ -9430,12 +9431,12 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 #, fuzzy msgid "Enable Statistics" msgstr "آمار پايگاههاي داده" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9680,7 +9681,7 @@ msgid "None" msgstr "خير" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9697,7 +9698,7 @@ msgstr "مدیریت" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9717,7 +9718,7 @@ msgstr "اطلاعات ورود" msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9768,7 +9769,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "ويرايش امتيازات" @@ -9783,7 +9784,7 @@ msgid "Export all" msgstr "صدور" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "همه" @@ -9803,116 +9804,116 @@ msgstr "امتيازات" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 #, fuzzy msgid "Grant" msgstr "چاپ" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10194,48 +10195,48 @@ msgstr "نمايش جدولها" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "نمايش جدولها" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy msgid "Related links:" msgstr "عمليات" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "پرس و جو" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "تابع" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10243,115 +10244,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "شرج" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "شناسه" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "دستور" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10359,78 +10360,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10438,7 +10439,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10446,42 +10447,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10489,33 +10490,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10524,243 +10525,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "مجموعه كاراكترهاي پرونده:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10768,99 +10769,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10868,18 +10869,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10887,69 +10888,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "پیگردی فعال نمی باشد." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "شنبه" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy msgid "Add chart" msgstr "افزودن ستون جديد" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "توليد‌شده توسط" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "اضافه يا حذف ستونها" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10958,7 +10959,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10966,18 +10967,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10985,11 +10986,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10997,97 +10998,97 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "حذف پایگاه داده" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Select Tables" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "افزودن يك كاربر جديد" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "پرس و جوي SQL" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "آمار سطرها" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Select Tables" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "پرس و جو" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] " ثانیه" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11855,35 +11856,35 @@ msgstr "" msgid "Showing tables" msgstr "نمايش جدولها" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "فضاي استفاده‌شده" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "موثر" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "آمار سطرها" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "پويا" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "طول سطر" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "اندازه سطر " -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11907,7 +11908,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11964,54 +11965,54 @@ msgstr "يك فهرست در %s اضافه گرديد." msgid "Show more actions" msgstr "نمايش اطلاعات PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy msgid "Move columns" msgstr "افزودن ستون جديد" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "نماي چاپ" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "پيشنهاد ساختار جدول" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy msgid "Add column" msgstr "افزودن ستون جديد" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "در انتهاي جدول" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "در ابتداي جدول" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "بعد از %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "ساخت يك فهرست در %s ستون" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12529,8 +12530,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12660,8 +12661,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/fi.po b/po/fi.po index a7413589de..4121ba1c08 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" -"PO-Revision-Date: 2012-05-21 20:39+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" +"PO-Revision-Date: 2012-06-24 00:18+0200\n" "Last-Translator: Jukka Penttinen \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "isäntäikkuna on suljettu tai että selaimen tietoturva-asetukset estävät " "ikkunoiden väliset päivitystoiminnot." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Etsi" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Suorita" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Avaimen nimi" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Kuvaus" @@ -117,13 +118,13 @@ msgstr "Tietokannan kommentti: " msgid "Table comments" msgstr "Taulun kommentit" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Taulun kommentit" msgid "Column" msgstr "Sarake" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tyyppi" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Viittaa sarakkeeseen" msgid "Comments" msgstr "Kommentit" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Kommentit" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ei" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Ei" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Tee vedos tietokannasta" msgid "No tables found in database." msgstr "Tietokannassa ei ole tauluja." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Valitse kaikki" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Poista valinta kaikista" @@ -321,12 +322,12 @@ msgstr "Lisää rajoitteet" msgid "Switch to copied database" msgstr "Siirry kopioituun tietokantaan" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Aakkosjärjestys" @@ -349,17 +350,17 @@ msgstr "Relaatioskeeman muokkaus tai vienti" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Taulu" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Kpl rivejä" @@ -374,21 +375,21 @@ msgstr "käytössä" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Luotu" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Viimeksi päivitetty" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Viimeksi tarkistettu" @@ -451,7 +452,7 @@ msgid "Del" msgstr "Poista" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Tai" @@ -492,85 +493,87 @@ msgstr "Suorita kysely" msgid "Access denied" msgstr "Käyttö estetty" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "vähintään yksi sanoista" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "kaikki sanat" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "koko lause" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "regexp-haku" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Tulokset hakusanalla \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s hakutulosta taulussa %2$s" -msgstr[1] "%1$s hakutulosta taulussa %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Selaa" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Poista taulusta %s löytyneet tulokset?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Poista" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Yhteensä: %s hakutulosta" msgstr[1] "Yhteensä: %s hakutulosta" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s hakutulosta taulussa %2$s" +msgstr[1] "%1$s hakutulosta taulussa %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Selaa" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Poista taulusta %s löytyneet tulokset?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Poista" + +#: db_search.php:362 msgid "Search in database" msgstr "Hae tietokannasta" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Haettavat sanat tai arvot (jokerimerkki: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Hae:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Sanat erotetaan välilyönnein." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Tauluissa:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Sarakkeen sisällä:" @@ -609,18 +612,18 @@ msgstr "Seuranta ei ole käytössä." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " -"%sohjeista%s." +"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" +"sohjeista%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Näkymä" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -630,93 +633,89 @@ msgstr "Kahdennus" msgid "Sum" msgstr "Summa" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Valitut:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Valitse kaikki" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Poista valinta kaikista" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Vienti" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tyhjennä" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Tuhoa" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Tarkista taulu" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimoi taulu" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Korjaa taulu" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analysoi taulu" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Lisää etuliite tauluun" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Korvaa taulun etuliite" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopioi taulun etuliite" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Tietosanasto" @@ -729,9 +728,9 @@ msgstr "Seurattavat taulut" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Tietokanta" @@ -748,17 +747,17 @@ msgstr "Luotu" msgid "Updated" msgstr "Päivitetty" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Tila" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Toiminnot" @@ -790,7 +789,7 @@ msgstr "Rakenteen kuvaus" msgid "Untracked tables" msgstr "Seuraamattomat taulut" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Seuraa taulua" @@ -927,8 +926,8 @@ msgstr "" #: import.php:86 #, 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 "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." @@ -1003,13 +1002,13 @@ msgstr "" "asti ellei PHP:n suoritusaikarajaa nosteta." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL-kyselyn suoritus onnistui" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Takaisin" @@ -1093,8 +1092,8 @@ msgstr "Salasana puuttuu!" msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Lisää käyttäjä" @@ -1112,7 +1111,7 @@ msgid "Close" msgstr "Sulje" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1139,13 +1138,13 @@ msgstr "Staattinen data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Yhteensä" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Toinen" @@ -1175,7 +1174,7 @@ msgstr "Palvelimen kuormitus (kt:nä)" msgid "Connections since last refresh" msgstr "Yhteydenttoa viimeisestä päivityksestä" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Prosessit" @@ -1239,13 +1238,13 @@ msgstr "Järjestelmän sivutusmuisti" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "Mt" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "kt" @@ -1297,7 +1296,7 @@ msgstr "Tavua lähetetty" msgid "Bytes received" msgstr "Tavua vastaanotettu" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Yhteydet" @@ -1336,11 +1335,11 @@ msgstr "%d taulu(a)" msgid "Questions" msgstr "Kysymykset" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Liikenne" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Asetukset" @@ -1363,8 +1362,8 @@ msgstr "Lisää sarjaan vähintään yksi muuttuja" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Ei mitään" @@ -1464,7 +1463,7 @@ msgstr "Muuta asetuksia" msgid "Current settings" msgstr "Nykyiset asetukset" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Kaavion otsikko" @@ -1531,7 +1530,7 @@ msgstr "Siirry lokitauluun" #: js/messages.php:180 msgid "No data found" -msgstr "Tieotoa ei löytynyt" +msgstr "Tietoa ei löydy" #: js/messages.php:181 msgid "Log analysed, but no data found in this time span." @@ -1547,7 +1546,7 @@ msgstr "Selitä SQL-kysely" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Aika" @@ -1642,20 +1641,20 @@ msgstr "" "Kaavioruudukon luonti ei onnistunut tuoduilla määrityksillä. Käytetään " "oletusmäärityksiä." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Tuonti" #: js/messages.php:213 msgid "Import monitor configuration" -msgstr "Tuo seurantamääritys" +msgstr "Tuo seuranta-asetukset" #: js/messages.php:214 msgid "Please select the file you want to import" -msgstr "Valitse tiedosto jonka haluat tuoda" +msgstr "Valitse tuotava tiedosto" #: js/messages.php:216 msgid "Analyse Query" @@ -1693,9 +1692,9 @@ msgstr "Käytetty muuttuja / kaava" msgid "Test" msgstr "Testaa" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Peruuta" @@ -1723,9 +1722,9 @@ msgstr "Sarakkeen poisto" msgid "Adding Primary Key" msgstr "Pääavaimen lisäys" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1801,7 +1800,7 @@ msgstr "Poisto" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Tallennettavan funktion määritelmässä tulee olla RETURN-lause!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET-muokkaus" @@ -1841,8 +1840,8 @@ msgstr "Näytä kyselykenttä" msgid "No rows selected" msgstr "Ei yhtään riviä valittu" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Muokkaa" @@ -1857,7 +1856,7 @@ msgid "%d is not valid row number." msgstr "%d on virheellinen rivinumero." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -1890,10 +1889,8 @@ msgid "To zoom in, select a section of the plot with the mouse." msgstr "" #: js/messages.php:306 -#, fuzzy -#| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." -msgstr "Palaa alkuperäiseen tilaan napsauttamalla zoomauksen nollauslinkkiä." +msgstr "Palaa alkuperäiseen tilaan napsauttamalla nollaa zoomaus painikeeta." #: js/messages.php:308 msgid "Click a data point to view and possibly edit the data row." @@ -2362,16 +2359,16 @@ msgstr "" "Odottamattomia merkkejä rivillä %1$s. Pitäisi olla sarkain (tab), mutta " "löytyi \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "sekunnissa" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "minuutissa" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "tunnissa" @@ -2395,16 +2392,12 @@ msgid "Font size" msgstr "Fonttikoko" #: libraries/DisplayResults.class.php:472 -#, fuzzy -#| msgid "Save directory" msgid "Save edited data" -msgstr "Tallennushakemisto" +msgstr "Tallenna muokatut tiedot" #: libraries/DisplayResults.class.php:478 -#, fuzzy -#| msgid "CHAR textarea columns" msgid "Restore column order" -msgstr "CHAR-tekstikentän sarakkeet" +msgstr "Palauta sarakkeiden järjestys" #: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 #: libraries/common.lib.php:2560 @@ -2431,22 +2424,16 @@ msgid "End" msgstr "Viimeinen sivu" #: libraries/DisplayResults.class.php:673 -#, fuzzy -#| msgid "Start" msgid "Start row" -msgstr "Käynnistä" +msgstr "Aloitusrivi" #: libraries/DisplayResults.class.php:677 -#, fuzzy -#| msgid "Number of fields" msgid "Number of rows" -msgstr "Kenttien määrä" +msgstr "Rivien määrä" #: libraries/DisplayResults.class.php:686 -#, fuzzy -#| msgid "More" msgid "Mode" -msgstr "Lisää" +msgstr "Tila" #: libraries/DisplayResults.class.php:688 msgid "horizontal" @@ -2461,10 +2448,9 @@ msgid "vertical" msgstr "pystysuorassa" #: libraries/DisplayResults.class.php:702 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" +#, php-format msgid "Headers every %s rows" -msgstr "Suorita kysely kirjanmerkeistä" +msgstr "Otsikot joka %s rivi" #: libraries/DisplayResults.class.php:1180 msgid "Sort by key" @@ -2483,22 +2469,18 @@ msgstr "Lajittele avaimen mukaan" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Valinnat" #: libraries/DisplayResults.class.php:1329 #: libraries/DisplayResults.class.php:1435 -#, fuzzy -#| msgid "Partial Texts" msgid "Partial texts" -msgstr "Lyhennetyt tekstit" +msgstr "Osittaiset tekstit" #: libraries/DisplayResults.class.php:1330 #: libraries/DisplayResults.class.php:1439 -#, fuzzy -#| msgid "Full Texts" msgid "Full texts" msgstr "Koko tekstit" @@ -2526,10 +2508,8 @@ msgid "Show binary contents as HEX" msgstr "Näytä binaarisisältö heksamuodossa" #: libraries/DisplayResults.class.php:1378 -#, fuzzy -#| msgid "Browser transformation" msgid "Hide browser transformation" -msgstr "Selaimen muunnos (transformation)" +msgstr "piilota webselaimen muunnos" #: libraries/DisplayResults.class.php:1387 msgid "Well Known Text" @@ -2545,7 +2525,7 @@ msgid "The row has been deleted" msgstr "Rivi on poistettu" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Lopeta" @@ -2572,27 +2552,27 @@ msgstr "yhteensä" msgid "Query took %01.4f sec" msgstr "Kysely kesti %01.4f s." -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Näytä kaavio" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Luo näkymä" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Linkkiä ei löydy" @@ -2665,46 +2645,46 @@ msgstr "Selaimessa on oltava evästeet päällä tästä lähtien." msgid "Javascript must be enabled past this point" msgstr "Javaskripti on oltava päällä tämän jälkeen" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Indeksiä ei ole määritelty!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksit" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Uniikki" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Pakattu" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinaliteetti" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentti" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Perusavain on poistettu" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indeksi %s on poistettu" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2713,9 +2693,9 @@ msgstr "" "Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee " "poistaa." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Tietokannat" @@ -2725,7 +2705,7 @@ msgstr "Tietokannat" msgid "Server" msgstr "Palvelin" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2738,102 +2718,102 @@ msgstr "Palvelin" msgid "Structure" msgstr "Rakenne" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Lisää rivi" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Toiminnot" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Seuranta" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Herättimet" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Taulu on tyhjä!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Tietokanta on tyhjä!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Haku" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Käyttöoikeudet" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiinit" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Tapahtumat" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Suunnittelija" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Käyttäjät" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Yhtenäistä" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binääriloki" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Muuttujat" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Merkistöt" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Liitännäiset" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Moottorit" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Virhe" @@ -2875,64 +2855,64 @@ msgstr "Äskeiset taulut" msgid "There are no recent tables" msgstr "Äskeisiä tauluja ei ole" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Tämän tallennusmoottorin tilasta ei ole saatavilla yksityiskohtaisia tietoja." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s on käytettävissä tällä MySQL-palvelimella." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "tuntematon taulun tila: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähdetietokanta '%s' ei löytynyt!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Kohde tietokantaa '%s' ei löydy!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Virheellinen tietokanta" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Virheellinen taulun nimi" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Virhe annettaessa taululle %1$s nimeä %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Taulu %1$s on nimeltään %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Taulun käyttöliittymäasetuksia ei voitu tallentaa" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2941,7 +2921,7 @@ msgstr "" "Taulun käyttöliittymäasetuksia ei voitu siivota (katso $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2952,40 +2932,34 @@ msgstr "" "eivät säily sivun päivittämisen jälkeen. Tarkista onko taulukon rakenne " "muuttunut." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funktio" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operaattori" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Arvo" #: libraries/TableSearch.class.php:205 -#, fuzzy -#| msgid "Search" msgid "Table Search" -msgstr "Etsi" +msgstr "Taulu haku" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 -#, fuzzy -#| msgid "Insert" +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" -msgstr "Lisää rivi" +msgstr "Muokkaa/lisää" #: libraries/TableSearch.class.php:739 -#, fuzzy -#| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Valitse sarakkeet (vähintään yksi):" @@ -3006,10 +2980,8 @@ msgid "Use this column to label each point" msgstr "" #: libraries/TableSearch.class.php:834 -#, fuzzy -#| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" -msgstr "Näytettävien rivien enimmäismäärä" +msgstr "Tulostettavien rivien enimmäismäärä" #: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 #: sql.php:143 tbl_change.php:211 @@ -3017,16 +2989,13 @@ msgid "Browse foreign values" msgstr "Selaa viitearvoja" #: libraries/TableSearch.class.php:947 -#, fuzzy -#| msgid "Hide search criteria" msgid "Additional search criteria" -msgstr "Piilota hakusanat" +msgstr "Tarkempi haku" #: libraries/TableSearch.class.php:1084 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")" +msgstr "" +"Suorita mallin mukainen kysely (jokerimerkki: \"%\") kahteen eri sarakkeeseen" #: libraries/TableSearch.class.php:1088 msgid "Do a \"query by example\" (wildcard: \"%\")" @@ -3037,16 +3006,12 @@ msgid "Browse/Edit the points" msgstr "" #: libraries/TableSearch.class.php:1155 -#, fuzzy -#| msgid "Control user" msgid "How to use" -msgstr "Hallintakäyttäjä" +msgstr "Kuinka käytetään" #: libraries/TableSearch.class.php:1160 -#, fuzzy -#| msgid "Reset" msgid "Reset zoom" -msgstr "Palauta" +msgstr "Palauta zoomaus" #: libraries/Theme.class.php:169 #, php-format @@ -3129,20 +3094,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - " -"-1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38" +"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - -" +"1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä " -"-1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja " +"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä -" +"1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja " "2.2250738585072014E-308 - 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3395,11 +3360,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" -"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " -"%1$sasetusskriptillä%2$s." +"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1" +"$sasetusskriptillä%2$s." #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3514,12 +3479,12 @@ msgstr "Taulut" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Tietoa" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Ylijäämä" @@ -3629,18 +3594,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-kysely" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3728,7 +3693,7 @@ msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" msgid "Click to toggle" msgstr "Vaihda painamalla" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" @@ -3738,8 +3703,8 @@ msgstr "Selaa tietokonettasi:" msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" @@ -3923,7 +3888,7 @@ msgstr "Palauta oletusarvo" msgid "Allow users to customize this value" msgstr "Anna käyttäjien mukauttaa tätä arvoa" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4211,7 +4176,7 @@ msgid "Character set of the file" msgstr "Tiedoston merkistö" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Muoto" @@ -4509,7 +4474,7 @@ msgstr "Navigointikehys" msgid "Customize appearance of the navigation frame" msgstr "Mukauta navigointikehyksen näkymää" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Palvelimet" @@ -5606,7 +5571,7 @@ msgid "" "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" -"pma_history[/kbd]" +"pma_table_uiprefs[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -5734,10 +5699,8 @@ msgid "Show or hide a column displaying the Creation timestamp for all tables" msgstr "" #: libraries/config/messages.inc.php:461 -#, fuzzy -#| msgid "Show versions" msgid "Show Creation timestamp" -msgstr "Näytä versiot" +msgstr "Näytä luonnin aikaleima" #: libraries/config/messages.inc.php:462 msgid "" @@ -5754,10 +5717,8 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:465 -#, fuzzy -#| msgid "Show master status" msgid "Show Last check timestamp" -msgstr "Näytä isäntäpalvelimen tila" +msgstr "Näytä viimeisin tarkastus aikaleima" #: libraries/config/messages.inc.php:466 msgid "" @@ -5826,7 +5787,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Säilytä SQL-kyselylaatikko" @@ -6149,7 +6110,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6157,15 +6118,15 @@ msgstr "" "Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty " "oikein)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Palvelin ei vastaa." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Lisätiedot..." @@ -6221,8 +6182,8 @@ msgstr "Luo taulu" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nimi" @@ -6250,52 +6211,36 @@ msgid "Exporting rows from \"%s\" table" msgstr "Tuo rivejä taulusta %s" #: libraries/display_export.lib.php:95 -#, fuzzy -#| msgid "Export type" msgid "Export Method:" -msgstr "Vientityyppi" +msgstr "Vientitapa:" #: libraries/display_export.lib.php:111 -#, fuzzy -#| msgid "Quick - display only the minimal options to configure" msgid "Quick - display only the minimal options" -msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän" +msgstr "Nopea - näytä vain vähän vaihtoehtoja" #: libraries/display_export.lib.php:127 -#, fuzzy -#| msgid "Custom - display all possible options to configure" msgid "Custom - display all possible options" -msgstr "Mukautettu - näytä kaikki mahdolliset asetukset" +msgstr "Mukautettu - näytä kaikki mahdolliset vaihtoehdot" #: libraries/display_export.lib.php:135 -#, fuzzy -#| msgid "Databases" msgid "Database(s):" -msgstr "Tietokannat" +msgstr "Tietokanta(-kannat):" #: libraries/display_export.lib.php:137 -#, fuzzy -#| msgid "Tables" msgid "Table(s):" -msgstr "Taulut" +msgstr "Taulu(t):" #: libraries/display_export.lib.php:147 -#, fuzzy -#| msgid "Rows" msgid "Rows:" -msgstr "Kpl rivejä" +msgstr "Rivit:" #: libraries/display_export.lib.php:155 -#, fuzzy -#| msgid "Dump all rows" msgid "Dump some row(s)" -msgstr "Vedosta kaikki rivit" +msgstr "Vedosta rivi/rivejä" #: libraries/display_export.lib.php:157 -#, fuzzy -#| msgid "Number of fields" msgid "Number of rows:" -msgstr "Kenttien määrä" +msgstr "Rivien määrä:" #: libraries/display_export.lib.php:160 msgid "Row to begin at:" @@ -6310,22 +6255,17 @@ msgid "Output:" msgstr "" #: libraries/display_export.lib.php:186 libraries/display_export.lib.php:212 -#, fuzzy, php-format -#| msgid "Save on server in %s directory" +#, php-format msgid "Save on server in the directory %s" -msgstr "Tallenna palvelimelle hakemistoon %s" +msgstr "Tallenna palvelimelle hakemistoon %s" #: libraries/display_export.lib.php:204 -#, fuzzy -#| msgid "Save as file" msgid "Save output to a file" -msgstr "Tallenna tiedostoon" +msgstr "Tallenna tulos tiedostoon" #: libraries/display_export.lib.php:225 -#, fuzzy -#| msgid "File name template" msgid "File name template:" -msgstr "Tiedostonimen pohja" +msgstr "Tiedostonimen pohja:" #: libraries/display_export.lib.php:227 msgid "@SERVER@ will become the server name" @@ -6340,34 +6280,28 @@ msgid ", @TABLE@ will become the table name" msgstr "" #: libraries/display_export.lib.php:235 -#, fuzzy, php-format -#| msgid "" -#| "alue is interpreted using %1$sstrftime%2$s, so you can use time matting " -#| "ings. Additionally the following transformations will pen: %3$s. Other t " -#| "will be kept as is." +#, 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 "" -"Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten " -"ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " -"muutokset: %3$s. Muu teksti pysyy alkuperäisenä." +"Tämä arvo on tukittu %1$sstrftime%2$s mukaan, joten voi käyttää " +"ajanmuodostostusmerkkijonoja. Lisäksi tapahtuu seuraavat muutokset: %3$s. " +"Muu teksti pysyy alkuperäisenä. Katso lisätietoja %4$sFAQ%5$s." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Tiedoston merkistö:" #: libraries/display_export.lib.php:321 -#, fuzzy -#| msgid "Compression" msgid "Compression:" -msgstr "Pakkaus" +msgstr "Pakkaus:" #: libraries/display_export.lib.php:325 msgid "zipped" @@ -6382,23 +6316,17 @@ msgid "bzipped" msgstr "BZIP-pakattu" #: libraries/display_export.lib.php:338 -#, fuzzy -#| msgid "Save as file" msgid "View output as text" -msgstr "Tallenna tiedostoon" +msgstr "Näytä tulos tekstinä" #: libraries/display_export.lib.php:343 libraries/display_import.lib.php:296 #: libraries/export/codegen.php:56 -#, fuzzy -#| msgid "Format" msgid "Format:" -msgstr "Muoto" +msgstr "Muoto:" #: libraries/display_export.lib.php:348 -#, fuzzy -#| msgid "Transformation options" msgid "Format-specific options:" -msgstr "Muunnosvaihtoehdot" +msgstr "Muotoiluvaihtoehdot:" #: libraries/display_export.lib.php:349 msgid "" @@ -6407,10 +6335,8 @@ msgid "" msgstr "" #: libraries/display_export.lib.php:357 libraries/display_import.lib.php:311 -#, fuzzy -#| msgid "Recoding engine" msgid "Encoding Conversion:" -msgstr "Merkistön uudelleenkoodaus" +msgstr "Merkistön uudelleenkoodaus:" #: libraries/display_git_revision.lib.php:56 #, php-format @@ -6453,10 +6379,8 @@ msgid "%s of %s" msgstr "" #: libraries/display_import.lib.php:78 -#, fuzzy -#| msgid "Format of imported file" msgid "Uploading your import file..." -msgstr "Tuotavan tiedoston muoto" +msgstr "Lataa tuontitiedostoa..." #: libraries/display_import.lib.php:86 #, php-format @@ -6484,28 +6408,22 @@ msgstr "" "saatavilla." #: libraries/display_import.lib.php:178 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" -msgstr "MySQL-palvelimelle ei voitu kirjautua" +msgstr "Tuonti nykyiselle palvalimelle" #: libraries/display_import.lib.php:180 -#, fuzzy, php-format -#| msgid "Go to database" +#, php-format msgid "Importing into the database \"%s\"" -msgstr "Siirry tietokantaan" +msgstr "Tuonti tietokantaan \"%s\"" #: libraries/display_import.lib.php:182 -#, fuzzy, php-format -#| msgid "Go to database" +#, php-format msgid "Importing into the table \"%s\"" -msgstr "Siirry tietokantaan" +msgstr "Tuonti tauluun \"%s\"" #: libraries/display_import.lib.php:188 -#, fuzzy -#| msgid "File to import" msgid "File to Import:" -msgstr "Tuotava tiedosto" +msgstr "Tuotava tiedosto:" #: libraries/display_import.lib.php:205 #, php-format @@ -6523,10 +6441,8 @@ msgid "File uploads are not allowed on this server." msgstr "Tällä palvelimella ei ole sallittu tiedostojen lähetystä." #: libraries/display_import.lib.php:260 -#, fuzzy -#| msgid "Partial import" msgid "Partial Import:" -msgstr "Osittainen tuonti" +msgstr "Osittainen tuonti:" #: libraries/display_import.lib.php:266 #, php-format @@ -6537,25 +6453,18 @@ msgstr "" "uudestaan, jatkamme kohdasta %d." #: libraries/display_import.lib.php:273 -#, fuzzy -#| msgid "" -#| "the interruption of an import in case the script detects it is se to the " -#| "timeout limit. This might be good way to import large es, however it " -#| "caneak transactions." msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. (This might be good way to import large files, " "however it can break transactions.)" msgstr "" -"Anna tuonnin keskeytyä, mikäli skripti huomaa ylittävänsä aikarajoituksen. " -"Tätä kannattaa käyttää tuotaessa suuria tiedostoja; se voi kuitenkin " -"aiheuttaa häiriöitä transaktioihin." +"Mahdollistaa tuonnin keskeytyksen, mikäli skripti päättyy PHP:n " +"aikarajoituksen. (Tätä kannattaa käyttää tuotaessa suuria tiedostoja, se " +"voi kuitenkin aiheuttaa häiriöitä transaktioihin.)" #: libraries/display_import.lib.php:280 -#, fuzzy -#| msgid "Number of records (queries) to skip from start" msgid "Number of rows to skip, starting from the first row:" -msgstr "Alusta ohitettavien tietueiden (kyselyjen) määrä" +msgstr "Ohitettavien rivien määrä, aloitus ensimmäisestä rivistä:" #: libraries/display_import.lib.php:302 msgid "Format-Specific Options:" @@ -6900,25 +6809,21 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 -#, fuzzy -#| msgid "Relations" msgid "Related Links" -msgstr "Relaatiot" +msgstr "Riippuvuudet" #: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" #: libraries/export/csv.php:34 libraries/import/csv.php:46 -#, fuzzy -#| msgid "Lines terminated by" msgid "Columns separated with:" -msgstr "Rivien erotinmerkki" +msgstr "Sarakkeiden erotin:" #: libraries/export/csv.php:39 libraries/import/csv.php:53 #, fuzzy @@ -6933,38 +6838,28 @@ msgid "Columns escaped with:" msgstr "Koodinvaihtomerkki" #: libraries/export/csv.php:49 libraries/import/csv.php:67 -#, fuzzy -#| msgid "Lines terminated by" msgid "Lines terminated with:" -msgstr "Rivien erotinmerkki" +msgstr "Rivien lopetusmerkki:" #: libraries/export/csv.php:54 libraries/export/excel.php:33 #: libraries/export/htmlword.php:56 libraries/export/latex.php:150 #: libraries/export/ods.php:34 libraries/export/odt.php:98 -#, fuzzy -#| msgid "Replace NULL by" msgid "Replace NULL with:" -msgstr "Korvaa NULL-merkki tällä:" +msgstr "Korvaa NULL-merkki:" #: libraries/export/csv.php:60 libraries/export/excel.php:39 -#, fuzzy -#| msgid "Remove CRLF characters within fields" msgid "Remove carriage return/line feed characters within columns" -msgstr "Poista kentistä CRLF-merkit" +msgstr "Poista sarakkeista CR/LF-merkit" #: libraries/export/excel.php:54 -#, fuzzy -#| msgid "Excel edition" msgid "Excel edition:" -msgstr "Excel-muokkaus" +msgstr "Excel-muotoilu:" #: libraries/export/htmlword.php:50 libraries/export/latex.php:121 #: libraries/export/odt.php:87 libraries/export/sql.php:269 #: libraries/export/texytext.php:47 libraries/export/xml.php:83 -#, fuzzy -#| msgid "Databases display options" msgid "Data dump options" -msgstr "Tietokantojen näyttöasetukset" +msgstr "Tiedon vedostusasetukset" #: libraries/export/htmlword.php:170 libraries/export/odt.php:224 #: libraries/export/sql.php:1536 libraries/export/texytext.php:152 @@ -6979,12 +6874,10 @@ msgstr "Tapahtuma" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 -#, fuzzy -#| msgid "Description" msgid "Definition" -msgstr "Kuvaus" +msgstr "Määritys" #: libraries/export/htmlword.php:518 libraries/export/odt.php:615 #: libraries/export/sql.php:1308 libraries/export/texytext.php:471 @@ -7002,46 +6895,34 @@ msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" #: libraries/export/latex.php:14 -#, fuzzy -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" -msgstr "Taulun __TABLE__ sisältö" +msgstr "Taulun @TABLE@ sisältö" #: libraries/export/latex.php:15 msgid "(continued)" msgstr "(jatkuu)" #: libraries/export/latex.php:16 -#, fuzzy -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" -msgstr "Taulun __TABLE__ rakenne" +msgstr "Taulun @TABLE@ rakenne" #: libraries/export/latex.php:72 libraries/export/odt.php:56 #: libraries/export/sql.php:171 -#, fuzzy -#| msgid "Transformation options" msgid "Object creation options" -msgstr "Muunnosvaihtoehdot" +msgstr "Objektin luontivaihtoehdot" #: libraries/export/latex.php:84 libraries/export/latex.php:138 -#, fuzzy -#| msgid "Table caption" msgid "Table caption (continued)" -msgstr "Taulun otsikko" +msgstr "Taulun otsikko (jatkuu)" #: libraries/export/latex.php:97 libraries/export/odt.php:63 #: libraries/export/sql.php:68 -#, fuzzy -#| msgid "Disable foreign key checks" msgid "Display foreign key relationships" -msgstr "Älä tarkista viiteavaimia" +msgstr "Näytä viiteavaimien suhteet" #: libraries/export/latex.php:103 libraries/export/odt.php:69 -#, fuzzy -#| msgid "Displaying Column Comments" msgid "Display comments" -msgstr "Sarakkeiden kommentit näkyvissä" +msgstr "Näytä kommentit" #: libraries/export/latex.php:109 libraries/export/odt.php:75 #: libraries/export/sql.php:75 @@ -7054,7 +6935,7 @@ msgstr "Näytä MIME-tyypit" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Palvelin" @@ -7078,10 +6959,8 @@ msgid "MediaWiki Table" msgstr "MediaWiki-taulu" #: libraries/export/mediawiki.php:53 -#, fuzzy -#| msgid "Export contents" msgid "Export table names" -msgstr "Vie sisällöt" +msgstr "Vie taulujen nimet" #: libraries/export/mediawiki.php:60 msgid "Export table headers" @@ -7110,10 +6989,8 @@ msgid "" msgstr "" #: libraries/export/sql.php:54 -#, fuzzy -#| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" -msgstr "Lisää oma kommentti otsikkoon (\\n on rivinvaihto)" +msgstr "Lisää oma kommentti otsikkoon (\\n on rivinvaihto):" #: libraries/export/sql.php:60 msgid "" @@ -7128,16 +7005,13 @@ msgstr "" #: libraries/export/sql.php:136 libraries/export/sql.php:204 #: libraries/export/sql.php:212 -#, fuzzy, php-format -#| msgid "Statements" +#, php-format msgid "Add %s statement" -msgstr "Tieto" +msgstr "Lisää %s lauseke" #: libraries/export/sql.php:181 -#, fuzzy -#| msgid "Statements" msgid "Add statements:" -msgstr "Tieto" +msgstr "Lisää lausekkeet:" #: libraries/export/sql.php:253 msgid "" @@ -7246,23 +7120,19 @@ msgid "Object creation options (all are recommended)" msgstr "" #: libraries/export/xml.php:72 -#, fuzzy -#| msgid "View" msgid "Views" -msgstr "Näkymä" +msgstr "Näkymät" #: libraries/export/xml.php:88 msgid "Export contents" msgstr "Vie sisällöt" #: libraries/gis_visualization.lib.php:135 -#, fuzzy -#| msgid "No data found for the chart." msgid "No data found for GIS visualization." -msgstr "Kaaviolle ei ole tietoja." +msgstr "GIS visualisoinnille ei ole tietoja." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." @@ -7450,81 +7320,81 @@ msgstr "SQL-yhteensopiva tila" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Kätke" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binääritietoa" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "ause of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Pituudestaan johtuen
    tätä saraketta ei voine muokata " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binääritietoa - älä muokkaa" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "palvelimen lähetyshakemisto" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Aloita lisäys alusta %s rivillä" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "ja sen jälkeen" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Takaisin" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy " "siirtymään minne suuntaan tahansa." -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" @@ -7552,7 +7422,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Lähetä" @@ -7572,7 +7442,7 @@ msgstr "Käytä indeksiä/indeksejä" msgid "Do you really want to execute the following query?" msgstr "Haluatko varmasti " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Ei muutoksia" @@ -7826,7 +7696,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Lue ohjeista, kuinka column_comments-taulut päivitetään." -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Tallennettu SQL-kysely" @@ -7875,6 +7745,10 @@ msgstr "" msgid "no description" msgstr "ei kuvausta" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Poista valinta kaikista" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Alipalvelimen asetusten määrittely" @@ -7911,8 +7785,8 @@ msgstr "Isännän tila" msgid "Slave status" msgstr "Alipalvelimen tila" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Muuttuja" @@ -7939,7 +7813,7 @@ msgstr "Kuka tahansa käyttäjä" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Käytä tekstikenttää" @@ -7972,10 +7846,10 @@ msgid "Generate Password" msgstr "Keksi salasana" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7987,7 +7861,7 @@ msgstr "Seuraavat kyselyt on suoritettu:" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8004,7 +7878,7 @@ msgstr "Taulu %s on poistettu" msgid "Event %1$s has been created." msgstr "Taulu %1$s on luotu." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8015,16 +7889,16 @@ msgstr "" msgid "Edit event" msgstr "Muokkaa palvelinta" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Virhe pyynnön käsittelyssä" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -8041,7 +7915,7 @@ msgstr "Tapahtuman tyyppi" msgid "Event type" msgstr "Tapahtuman tyyppi" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8077,13 +7951,13 @@ msgstr "Loppu" msgid "On completion preserve" msgstr "Kokonaiset lisäyslauseet" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8108,7 +7982,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8130,7 +8004,7 @@ msgstr "" msgid "Returns" msgstr "Paluutyyppi" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8138,145 +8012,145 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Virheellinen palvelimen indeksi: %s" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Taulu %s on poistettu" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Taulu %1$s on luotu." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Muokkaustila" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutiinit" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Suorat linkit" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Pituus/Arvot*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Käytä indeksiä/indeksejä" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Tuhoa tietokanta" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Paluutyyppi" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Pituus/Arvot*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Taulun valinnat" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Turvallisuus" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Sallii talletettujen rutiinien suorittamisen." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8611,7 +8485,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Tuntematon kieli: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Current server" msgid "Current Server" @@ -8644,50 +8518,50 @@ msgstr "Kohdetietokanta" msgid "Click to select" msgstr "Valitse painamalla" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Suorita SQL-kysely(jä) palvelimella %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Suorita SQL-kyselyjä tietokannassa %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Tyhjennä" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Sarakkeet" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Älä korvaa tätä kyselyä ikkunan ulkopuolelta" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Erotinmerkki" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Näytä tämä kyselylause uudestaan" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Näytä" @@ -8795,7 +8669,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeksi" @@ -8849,12 +8723,12 @@ msgid "As defined:" msgstr "Määritelty:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Perusavain" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Koko teksti" @@ -8868,13 +8742,13 @@ msgstr "" msgid "after %s" msgstr "Jälkeen sarakkeen: %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Lisää sarake/sarakkeita" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -8937,7 +8811,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Näyttää kuvan latauslinkin." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9160,8 +9034,8 @@ msgid "Protocol version" msgstr "Protokollan versio" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Käyttäjä" @@ -9309,17 +9183,17 @@ msgstr "" "Palvelin käyttää Suhosin-suojausjärjestelmää. Lue %sohjeista%s tietoja " "mahdollisista ongelmista." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Ei tietokantoja" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Lajittele taulu" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9344,7 +9218,7 @@ msgstr "Näytä/kätke vasen valikko" msgid "Save position" msgstr "Tallenna sijainti" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Luo relaatio" @@ -9408,46 +9282,46 @@ msgstr "Kätke/näytä taulut, joilla ei ole relaatiota" msgid "Number of tables" msgstr "Taulujen määrä" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Poista relaatio" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relaatio poistettu" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Vienti" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "lauseessa" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Nimeä taulu uudelleen" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Uusi nimi" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Luo" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9625,13 +9499,13 @@ msgstr "Valitse näytettävä binääriloki" msgid "Files" msgstr "Tiedostot" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Lyhennä näytettävät kyselyt" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" @@ -9647,7 +9521,7 @@ msgstr "Sijainti" msgid "Original position" msgstr "Alkuperäinen sijainti" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Tiedot" @@ -9676,11 +9550,11 @@ msgstr "Isäntäpalvelimen kahdennus" msgid "Slave replication" msgstr "Alipalvelimen kahdennus" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Näytä tilastot" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9934,7 +9808,7 @@ msgid "None" msgstr "Ei mitään" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" @@ -9951,7 +9825,7 @@ msgstr "Hallinta" msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" @@ -9971,7 +9845,7 @@ msgstr "Kirjautumistiedot" msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10022,7 +9896,7 @@ msgstr "Valitsemiesi käyttäjien poisto onnistui." msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Muokkaa käyttöoikeuksia" @@ -10037,7 +9911,7 @@ msgid "Export all" msgstr "Vienti" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Mikä tahansa" @@ -10059,84 +9933,84 @@ msgstr "Käyttöoikeudet" msgid "Users overview" msgstr "Käyttäjien yleiskatsaus" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Poista valitut käyttäjät" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Korvausmerkkien _ ja % eteen on lisättävä \\-merkki, jotta ne näkyisivät " "oikein" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Lisää käyttöoikeudet seuraavaan tauluun" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... säilytä vanha käyttäjä." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... poista vanha käyttäjä käyttäjätauluista." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " "käyttäjä sen jälkeen." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10144,42 +10018,42 @@ msgstr "" " ... poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen " "käyttöoikeudet." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Tietokanta käyttäjälle" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Anna tietokannalle "%s" kaikki oikeudet" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globaali" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "tietokantakohtainen" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "korvausmerkki" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10486,50 +10360,50 @@ msgstr "Näytä avoimet taulut" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Näytä avoimet taulut" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relaatiot" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Kyselyn tyyppi" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Tiedot" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10537,33 +10411,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Mukauta käynnistyssivua" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Tieto" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10571,18 +10445,18 @@ msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " "alipalvelimena." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10590,11 +10464,11 @@ msgstr "" "Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Kahdennuksen tila" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10602,47 +10476,47 @@ msgstr "" "Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" "palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Vastaanotettu" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Lähetetty" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Epäonnistuneet yritykset" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Keskeytetty" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "Tunnus" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Komento" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-palvelimeen ei voitu yhdistää" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10653,16 +10527,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden määrä." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10674,11 +10548,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10686,7 +10560,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10694,7 +10568,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10702,23 +10576,23 @@ msgstr "" "Käytössä olevien INSERT DELAYED -käsittelijäsäikeiden määrä. Jokainen INSERT " "DELAYED -kyselyä käyttävä taulu saa käyttöönsä oman säikeensä." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10728,7 +10602,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10739,7 +10613,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10747,7 +10621,7 @@ msgstr "" "Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä " "on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10757,7 +10631,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10766,7 +10640,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC " "-kyselyllä optimoimiseen." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10779,7 +10653,7 @@ msgstr "" "pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät " "liitoksia, jotka käyttävät avaimia virheellisesti." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10791,35 +10665,35 @@ msgstr "" "yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei " "ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10829,7 +10703,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10841,11 +10715,11 @@ msgstr "" "takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10853,7 +10727,7 @@ msgstr "" "InnoDB:n käynnistämien umpimähkäisten ennakkolukujen määrä. Näin käy kyselyn " "lukiessa satunnaisessa järjestyksessä läpi laajoja alueita taulusta." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10861,11 +10735,11 @@ msgstr "" "InnoDB:n käynnistämien perättäisten ennakkolukujen määrä. Näin käy kun " "InnoDB lukee läpi kokonaisen taulun tavallisessa järjestyksessä." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10873,7 +10747,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10887,55 +10761,55 @@ msgstr "" "kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu " "sopivaksi, tämän arvon pitäisi olla alhainen." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10943,35 +10817,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10980,52 +10854,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11034,7 +10908,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11043,26 +10917,26 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "Samaan aikaan avainvälimuistissa olleiden lohkojen määrä enimmillään." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Tuotavan tiedoston muoto" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" "Kertoo, kuinka monta pyyntöä on suoritettu avainlohkon hakemiseksi " "välimuistista." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11073,27 +10947,27 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" "Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11104,18 +10978,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11123,39 +10997,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Avoinna olevien tietovirtojen määrä (käytetään pääasiassa kirjauksessa)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11168,7 +11042,7 @@ msgstr "" "Kyselyvälimuisti päättää välimuistista poistettavat kyselyt LRU-käytännön " "avulla (\"least recently used\" eli \"äskettäin vähiten käytetyt kyselyt\")." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11177,19 +11051,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11197,11 +11071,11 @@ msgstr "" "Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, " "taulujen indeksit olisi hyvä tarkistaa tarkkaan." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Niiden liitosten määrä, jotka käyttivät viitetaulussa aluehakua." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11210,7 +11084,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11218,17 +11092,17 @@ msgstr "" "Kertoo niiden liitosten määrän, jotka käyttävät rajausta ensimmäisessä " "taulussa. (Yleensä ei ole vakavaa, vaikka tämä arvo olisi suuri.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" "Kertoo niiden liitosten määrän, jotka suorittivat ensimmäisestä taulusta " "täydellisen tarkistuksen." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "SQL-alisäikeen avointen tilapäistaulujen määrä tällä hetkellä." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11236,13 +11110,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Tämän on päällä (ON), mikäli kyseinen palvelin on pääpalvelimeen kytketty " "alipalvelin." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11250,14 +11124,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Niiden kyselyjen määrä, joiden suorittamiseen on kulunut aikaa enemmän kuin " "long_query_time sekuntia." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11266,25 +11140,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" "Niiden lajittelutoimenpiteiden määrä, jotka on suoritettu lukemalla taulu " "läpi." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11296,7 +11170,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11306,11 +11180,11 @@ msgstr "" "voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä " "arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11322,73 +11196,73 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Seuranta ei ole käytössä." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Käynnistä" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Käytä indeksiä/indeksejä" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Päivitä" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR-tekstikentän sarakkeet" -#: server_status.php:1626 +#: server_status.php:1635 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Virheiden hallinta:" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Palauta oletusarvoon" -#: server_status.php:1631 +#: server_status.php:1640 #, fuzzy msgid "Monitor Instructions" msgstr "Tiedot" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11397,7 +11271,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11405,18 +11279,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11424,11 +11298,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11436,97 +11310,97 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Tuhoa tietokanta" -#: server_status.php:1679 +#: server_status.php:1690 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Näytä alipalvelimen tilan taulu" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Valitse taulut" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Virheellinen taulun nimi" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Lisää uusi palvelin" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL-kyselyt" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Näytä tilastot" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Valitse taulut" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Kyselyn tyyppi" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11534,7 +11408,7 @@ msgid_plural "%d seconds" msgstr[0] "Sekunti" msgstr[1] "Sekunti" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -12417,35 +12291,35 @@ msgstr "Tarkista viitteiden eheys:" msgid "Showing tables" msgstr "Näytä taulut" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Levytilan käyttö" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Pätevä" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Rivitilastot" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "staattinen" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynaaminen" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Rivin pituus" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Rivin koko" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12474,7 +12348,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Viiteavaimen rajoitus" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12535,56 +12409,56 @@ msgstr "Sarakkeelle %s on lisätty indeksi" msgid "Show more actions" msgstr "Näytä versiot" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Poista sarake/sarakkeet" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Tulostusversio" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relaationäkymä" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Esitä taulun rakenne" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Lisää sarake/sarakkeita" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Taulun loppuun" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Taulun alkuun" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Jälkeen sarakkeen: %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Luo  %s:n sarakkeen indeksi" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "ositettu" @@ -13127,8 +13001,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13263,8 +13137,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14113,8 +13987,8 @@ msgstr "Enim. yhtäaikaisia yhteyksiä" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta " -#~ "%s?" +#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta %" +#~ "s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/fr.po b/po/fr.po index df8e92641a..6dab14bdb4 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-20 18:40+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: none\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: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgstr "" "navigateur bloque les mises à jour entre fenêtres pour des raisons de " "sécurité." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Rechercher" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Exécuter" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nom de l'index" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Description" @@ -118,13 +119,13 @@ msgstr "Commentaire sur la base de données: " msgid "Table comments" msgstr "Commentaires sur la table" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Commentaires sur la table" msgid "Column" msgstr "Colonne" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Relié à" msgid "Comments" msgstr "Commentaires" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Commentaires" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Non" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Non" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Voir une exportation (schéma) de la base de données" msgid "No tables found in database." msgstr "Aucune table n'a été trouvée dans cette base." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Tout sélectionner" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Tout désélectionner" @@ -322,12 +323,12 @@ msgstr "Inclure les contraintes de clés étrangères" msgid "Switch to copied database" msgstr "Aller à la base de données copiée" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Interclassement" @@ -350,17 +351,17 @@ msgstr "Éditer ou exporter un schéma relationnel" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Table" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Lignes" @@ -375,21 +376,21 @@ msgstr "utilisé" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Création" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Dernière modification" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Dernière vérification" @@ -452,7 +453,7 @@ msgid "Del" msgstr "Effacer" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ou" @@ -493,85 +494,87 @@ msgstr "Exécuter la requête" msgid "Access denied" msgstr "Accès refusé" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "au moins un mot" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "tous les mots" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "phrase exacte" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "expression réguliére" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Résultats de la recherche de «%s» %s : " -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s correspondance dans la table %2$s" -msgstr[1] "%1$s correspondances dans la table %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Afficher" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Supprimer de la table %s les occurences ?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Effacer" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total : %s occurence" msgstr[1] "Total : %s occurences" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s correspondance dans la table %2$s" +msgstr[1] "%1$s correspondances dans la table %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Afficher" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Supprimer de la table %s les occurences ?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Effacer" + +#: db_search.php:362 msgid "Search in database" msgstr "Effectuer une nouvelle recherche dans la base de données" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Mots ou valeurs à rechercher (passe-partout: «%») : " -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Type de recherche : " -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Séparer les mots par un espace (« »)." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Dans les tables : " -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Dans la colonne : " @@ -610,18 +613,18 @@ msgstr "Le suivi n'est pas activé." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Cette vue contient au moins ce nombre de lignes. Veuillez référer à " -"%sdocumentation%s." +"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %" +"sdocumentation%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Vue" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -631,93 +634,89 @@ msgstr "Réplication" msgid "Sum" msgstr "Somme" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Pour la sélection : " -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Tout cocher" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Tout décocher" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporter" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Vider" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Supprimer" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Vérifier la table" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimiser la table" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Réparer la table" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyser la table" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Ajouter un préfixe à la table" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Remplacer le préfixe de table" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copier la table avec un préfixe" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dictionnaire de données" @@ -730,9 +729,9 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de données" @@ -749,17 +748,17 @@ msgstr "Créé" msgid "Updated" msgstr "Mis à jour" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "État" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Action" @@ -791,7 +790,7 @@ msgstr "Instantané" msgid "Untracked tables" msgstr "Tables ne faisant pas l'objet d'un suivi" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Suivre la table" @@ -924,14 +923,14 @@ msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -"Choisissez «GeomFromText» dans la colonne «Fonction» et collez la chaîne " -"dans le champ «Valeur»" +"Choisissez «GeomFromText» dans la colonne «Fonction» et collez la chaîne dans " +"le champ «Valeur»" #: import.php:86 #, 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 "" "Vous avez probablement tenté de télécharger un fichier trop volumineux. " "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " @@ -1010,13 +1009,13 @@ msgstr "" "limite de temps de PHP ne soit augmentée." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Votre requête SQL a été exécutée avec succès" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Retour" @@ -1102,8 +1101,8 @@ msgstr "Le mot de passe est vide !" msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Ajouter un utilisateur" @@ -1121,7 +1120,7 @@ msgid "Close" msgstr "Fermer" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1148,13 +1147,13 @@ msgstr "Données statiques" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Autres" @@ -1184,7 +1183,7 @@ msgstr "Trafic du serveur (en Kio)" msgid "Connections since last refresh" msgstr "Connexions depuis le dernier rafraîchissement" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processus" @@ -1248,13 +1247,13 @@ msgstr "Zone d'échange" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "Kio" @@ -1306,7 +1305,7 @@ msgstr "Octets envoyés" msgid "Bytes received" msgstr "Octets reçus" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Connexions" @@ -1345,11 +1344,11 @@ msgstr "%d table(s)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Paramètres" @@ -1372,8 +1371,8 @@ msgstr "Veuillez ajouter au moins une variable à la série" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Aucune" @@ -1473,7 +1472,7 @@ msgstr "Changer les paramètres" msgid "Current settings" msgstr "Paramètres courants" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Titre du graphique" @@ -1559,7 +1558,7 @@ msgstr "Expliquer les résultats" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Moment" @@ -1653,10 +1652,10 @@ msgstr "" "Échec de construction du graphique avec la configuration importée. " "Réinitialisation à la configuration par défaut..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1704,9 +1703,9 @@ msgstr "Variable / formule utilisée" msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Annuler" @@ -1734,9 +1733,9 @@ msgstr "Suppression de la colonne" msgid "Adding Primary Key" msgstr "Ajout de clé primaire" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1812,7 +1811,7 @@ msgstr "Destruction en cours" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "La définition d'une fonction doit comporter un énoncé RETURN !" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Éditeur ENUM/SET" @@ -1851,8 +1850,8 @@ msgstr "Montrer zone SQL" msgid "No rows selected" msgstr "Aucune ligne n'a été sélectionnée" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Modifier" @@ -1867,7 +1866,7 @@ msgid "%d is not valid row number." msgstr "%d n'est pas un numéro de ligne valable." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -1900,7 +1899,6 @@ msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pour zoomer, sélectionnez une section avec la souris." #: js/messages.php:306 -#| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "Cliquez le lien «Réinitialiser zoom» pour revenir à l'état original." @@ -2374,19 +2372,19 @@ msgstr "Caractères imprévus à la ligne %s" #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -"Caractère imprévue à la ligne %1$s. Une tabulation était attendue, mais " -"\"%2$s\" a été trouvé" +"Caractère imprévue à la ligne %1$s. Une tabulation était attendue, mais \"%2" +"$s\" a été trouvé" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "par seconde" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "par minute" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "par heure" @@ -2467,7 +2465,6 @@ msgstr "vertical" #: libraries/DisplayResults.class.php:702 #, php-format -#| msgid "Headers every" msgid "Headers every %s rows" msgstr "En-têtes à chaque %s ligne" @@ -2488,8 +2485,8 @@ msgstr "Trier sur l'index" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Options" @@ -2542,7 +2539,7 @@ msgid "The row has been deleted" msgstr "La ligne a été effacée" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Supprimer" @@ -2571,27 +2568,27 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Visualiser les données GIS" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Créer une vue" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Lien absent" @@ -2667,46 +2664,46 @@ msgstr "Vous devez accepter les cookies pour poursuivre." msgid "Javascript must be enabled past this point" msgstr "Javascript doit être activé" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Aucun index n'est défini !" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Index" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Compressé" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinalité" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Commentaire" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "La clé primaire a été effacée" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "L'index %s a été effacé" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2715,9 +2712,9 @@ msgstr "" "Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être " "supprimé." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Bases de données" @@ -2727,7 +2724,7 @@ msgstr "Bases de données" msgid "Server" msgstr "Serveur" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2740,102 +2737,102 @@ msgstr "Serveur" msgid "Structure" msgstr "Structure" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Insérer" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Opérations" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Suivi" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Déclencheurs" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "La table semble vide !" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "La base de données semble vide !" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Requête" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilèges" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Procédures stockées" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Événements" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Concepteur" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Utilisateurs" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchroniser" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log binaire" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Jeux de caractères" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Moteurs" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Erreur" @@ -2877,65 +2874,65 @@ msgstr "Tables récentes" msgid "There are no recent tables" msgstr "Il n'y a pas de tables récentes" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s est disponible sur ce serveur MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, 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:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "Statut de table incorrect : " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "La base de données source `%s` n'existe pas !" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "La base de données cible `%s` n'existe pas !" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Nom de base de données invalide" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Nom de table invalide" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La table %1$s se nomme maintenant %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Impossible de sauvegarder les préférences d'interface de tables" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2944,7 +2941,7 @@ msgstr "" "Echec lors de la tentative de vidage de la table UI Préférences (voir $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2955,22 +2952,22 @@ msgstr "" "sera pas persistant après actualisation de cette page. Merci de vérifier si " "la structure de la table a changé." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Fonction" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Opérateur" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Valeur" @@ -2978,7 +2975,7 @@ msgstr "Valeur" msgid "Table Search" msgstr "Recherche dans la table" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Modifier/Insérer" @@ -3073,16 +3070,16 @@ msgstr "Thème" msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de " -"-128 à 127. Pour les nombres sans signe, c'est de 0 à 255" +"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de -" +"128 à 127. Pour les nombres sans signe, c'est de 0 à 255" #: libraries/Types.class.php:297 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de " -"-32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535" +"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de -" +"32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535" #: libraries/Types.class.php:299 msgid "" @@ -3121,16 +3118,16 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Un petit nombre en virgule flottante, la fourchette des valeurs est " -"-3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38" +"Un petit nombre en virgule flottante, la fourchette des valeurs est -" +"3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Un nombre en virgule flottante double-précision, la fourchette des valeurs " @@ -3180,9 +3177,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à " -"«2038-01-09 03:14:07» UTC, en nombre de secondes depuis le moment de " -"référence («1970-01-01 00:00:00» UTC)" +"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à «2038-" +"01-09 03:14:07» UTC, en nombre de secondes depuis le moment de référence " +"(«1970-01-01 00:00:00» UTC)" #: libraries/Types.class.php:325 libraries/Types.class.php:727 #, php-format @@ -3437,8 +3434,8 @@ msgstr "Bienvenue dans %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "La raison probable est que vous n'avez pas créé de fichier de configuration. " "Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but." @@ -3555,12 +3552,12 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Données" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Perte" @@ -3675,18 +3672,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "fr" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Requête SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3774,7 +3771,7 @@ msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" msgid "Click to toggle" msgstr "Cliquer pour basculer" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Parcourir : " @@ -3785,8 +3782,8 @@ msgid "Select from the web server upload directory %s:" msgstr "" "Choisissez depuis le répertoire de téléchargement du serveur web %s : " -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" @@ -3971,7 +3968,7 @@ msgstr "Ramener la valeur par défaut" msgid "Allow users to customize this value" msgstr "Permettre aux utilisateurs de personnaliser cette valeur" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4263,7 +4260,7 @@ msgid "Character set of the file" msgstr "Jeu de caractères du fichier" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4565,7 +4562,7 @@ msgstr "Panneau de navigation" msgid "Customize appearance of the navigation frame" msgstr "Personnaliser l'apparence du panneau de navigation" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Serveurs" @@ -5912,7 +5909,7 @@ msgid "" msgstr "" "Détermine si la boîte de requêtes devrait rester afficher après exécution" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Conserver la boîte de requêtes" @@ -6246,7 +6243,7 @@ msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." msgid "possible deep recursion attack" msgstr "possible attaque récursive" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6254,16 +6251,16 @@ msgstr "" "Le serveur ne répond pas (ou l'interface de connexion vers le serveur MySQL " "local n'est pas correctement configurée)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Le serveur ne répond pas." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" "Veuillez vérifier les privilèges du répertoire contenant la base de données." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Détails..." @@ -6319,8 +6316,8 @@ msgstr "Nouvelle table" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nom" @@ -6420,8 +6417,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la 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 "" "Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc " "utiliser des chaînes de format d'heure. Ces transformations additionnelles " @@ -6433,7 +6430,7 @@ msgid "use this for future exports" msgstr "utiliser ceci pour les futures exportations" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Jeu de caractères du fichier : " @@ -6959,8 +6956,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." @@ -7022,7 +7019,7 @@ msgstr "Événement" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Définition" @@ -7083,7 +7080,7 @@ msgstr "Afficher les types MIME" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Client" @@ -7303,8 +7300,8 @@ msgstr "Exporter le contenu" msgid "No data found for GIS visualization." msgstr "Données non disponibles pour visualisation GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." @@ -7482,79 +7479,79 @@ msgstr "Mode de compatibilité SQL : " msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Cacher" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binaire" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" "Il est possible que cette colonne
    ne soit pas éditable
    en raison " "de sa longueur" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binaire - ne pas éditer" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "répertoire de transfert du serveur web" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuer l'insertion avec %s lignes" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "et ensuite" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Sauvegarder une nouvelle ligne" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Insérer une nouvelle ligne" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Modifier la ligne suivante" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" @@ -7578,7 +7575,7 @@ msgid "To" msgstr "Vers" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Exécuter" @@ -7594,7 +7591,7 @@ msgstr "Ajouter un préfixe" msgid "Do you really want to execute the following query?" msgstr "Voulez-vous vraiment exécuter la requête suivante ?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Pas de modifications" @@ -7845,7 +7842,7 @@ msgid "" msgstr "" "La documentation indique comment mettre à jour votre table column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Requêtes SQL en signets" @@ -7899,6 +7896,10 @@ msgstr "" msgid "no description" msgstr "pas de description" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Tout décocher" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Configuration de l'esclave" @@ -7936,8 +7937,8 @@ msgstr "État du maître" msgid "Slave status" msgstr "État de l'esclave" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -7964,7 +7965,7 @@ msgstr "Tout utilisateur" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Entrez une valeur" @@ -7997,10 +7998,10 @@ msgid "Generate Password" msgstr "Générer un mot de passe" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8011,7 +8012,7 @@ msgstr "La requête «%s» a échoué" msgid "Sorry, we failed to restore the dropped event." msgstr "Désolé, il a été impossible de restaurer l'événement." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "La requête conservée est : " @@ -8026,7 +8027,7 @@ msgstr "L'événement %1$s a été modifié." msgid "Event %1$s has been created." msgstr "L'événement %1$s a été créé." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8036,14 +8037,14 @@ msgstr "" msgid "Edit event" msgstr "Modifier l'événement" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Erreur dans le traitement de la requête" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Détails" @@ -8056,7 +8057,7 @@ msgstr "Nom de l'événement" msgid "Event type" msgstr "Type d'évènement" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Changer pour %s" @@ -8083,13 +8084,13 @@ msgstr "Fin" msgid "On completion preserve" msgstr "Suite à l'exécution, conserver" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Créateur" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Le définisseur doit suivre le format «utilisateur@machine»" @@ -8114,7 +8115,7 @@ msgstr "Vous devez fournir un type valable pour l'événement." msgid "You must provide an event definition." msgstr "Vous devez fournir une définition pour l'événement." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Nouveau" @@ -8134,7 +8135,7 @@ msgstr "État du planificateur d'événements" msgid "Returns" msgstr "Retourne" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8146,89 +8147,89 @@ msgstr "" "peut échouer ! [/strong] Veuillez utiliser l'extension «mysqli» pour éviter " "ces problèmes." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Type de procédure invalide : «%s»" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Désolé, il a été impossible de restaurer la procédure." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "La procédure %1$s a été modifiée." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "La procédure %1$s a été créée." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Modifier une procédure" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Nom de la procédure" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Paramètres" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Taille/Valeurs*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Ajouter un paramètre" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Supprimer le dernier paramètre" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Type retourné" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Taille/Valeurs à retourner" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Options de retour" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Est déterministe" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Type de sécurité" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Accès aux données SQL" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Vous devez fournir un nom pour la procédure" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "La direction «%s» fournie pour le paramètre est invalide." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8236,37 +8237,37 @@ msgstr "" "Vous devez fournir une longueur ou une valeur pour les paramètres de type " "ENUM, SET, VARCHAR et VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Vous devez fournir un nom et un type pour chacun des paramètres." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Vous devez fournir un type de retour valable pour la procédure." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Vous devez fournir une définition pour la procédure." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Résultats de l'exécution de la procédure %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Exécuter la procédure" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Paramètres de procédure" @@ -8552,7 +8553,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Langue inconnue: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Serveur actuel" @@ -8583,50 +8584,50 @@ msgstr "Base de données cible" msgid "Click to select" msgstr "Cliquer pour sélectionner" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Vider" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Conserver cette requête SQL dans les signets" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Remplacer un signet existant du même nom" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Délimiteur" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Afficher à nouveau la requête après exécution" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Voir uniquement" @@ -8699,8 +8700,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." +"PHP nécessaires ont bien été installées tel que décrit dans la %" +"sdocumentation%s." #: libraries/tbl_common.inc.php:53 #, php-format @@ -8729,7 +8730,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Index" @@ -8780,12 +8781,12 @@ msgid "As defined:" msgstr "Tel que défini : " #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primaire" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Texte entier" @@ -8798,12 +8799,12 @@ msgstr "en premier" msgid "after %s" msgstr "après %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Ajouter %s colonne(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." @@ -8859,7 +8860,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Affiche un lien vers cette image." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9039,8 +9040,8 @@ msgid "Protocol version" msgstr "Version du protocole" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Utilisateur" @@ -9178,15 +9179,15 @@ msgstr "" "Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s " "pour en connaître les conséquences possibles." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Aucune base de données" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "Filtrer par nom de base de données" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtrer par nom de table" @@ -9207,7 +9208,7 @@ msgstr "Montrer/cacher le menu de gauche" msgid "Save position" msgstr "Sauvegarder la position" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Nouvelle relation" @@ -9267,37 +9268,37 @@ msgstr "Cacher/montrer les tables sans liens" msgid "Number of tables" msgstr "Nombre de tables" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Effacer la relation" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Opérateur de relation" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Sauf" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "sous-requête" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Renommer en" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nouveau nom" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Regroupement" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Options actives" @@ -9465,13 +9466,13 @@ msgstr "Sélectionnez le log binaire à consulter" msgid "Files" msgstr "Fichiers" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Afficher les requêtes tronquées" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" @@ -9487,7 +9488,7 @@ msgstr "Position" msgid "Original position" msgstr "Position d'origine" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Information" @@ -9515,11 +9516,11 @@ msgstr "Réplication maître" msgid "Slave replication" msgstr "Réplication esclave" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Activer les statistiques" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9782,7 +9783,7 @@ msgid "None" msgstr "Aucun" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" @@ -9799,7 +9800,7 @@ msgstr "Administration" msgid "Global privileges" msgstr "Privilèges globaux" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" @@ -9819,7 +9820,7 @@ msgstr "Information pour la connexion" msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." @@ -9868,7 +9869,7 @@ msgstr "Les utilisateurs sélectionnés ont été effacés." msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Changer les privilèges" @@ -9881,7 +9882,7 @@ msgid "Export all" msgstr "Tout exporter" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "N'importe quel" @@ -9898,124 +9899,124 @@ msgstr "Privilèges pour %s" msgid "Users overview" msgstr "Survol des utilisateurs" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "«Grant»" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Effacer les utilisateurs sélectionnés" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" "Supprimer les bases de données portant le même nom que les utilisateurs." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilèges de colonnes" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Ajouter des privilèges sur cette base de données" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Ajouter des privilèges sur cette table" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Changement des informations de connexion / Copie d'utilisateur" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... conserver intact l'ancien utilisateur." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... supprimer l'ancien utilisateur." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "... supprimer l'ancien utilisateur, puis recharger les privilèges au serveur." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Base de données pour cet utilisateur" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "Créer une base portant son nom et donner à cet utilisateur tous les " "privilèges sur cette base" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Donner les privilèges passepartout (utilisateur\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Donner tous les privilèges sur la base de données "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Utilisateurs ayant accès à "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "spécifique à cette base de données" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "passepartout" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "La vue %s a été supprimée." @@ -10303,23 +10304,23 @@ msgstr "Afficher uniquement les valeurs d'alerte" msgid "Filter by category..." msgstr "Filtrer par catégorie..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Afficher les valeurs non formattées" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Liens connexes : " -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Lancer l'analyseur" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Consignes" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10327,7 +10328,7 @@ msgstr "" "Le conseiller peut donner des recommandations au sujet des variables de " "serveur." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10336,7 +10337,7 @@ msgstr "" "Veuillez noter que ce système se base sur de simples calculs et des règles " "de base qui ne s'appliquent pas nécessairement à votre serveur." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10346,7 +10347,7 @@ msgstr "" "(lisez la documentation) et de savoir comment défaire le changement. Un " "réglage incorrect peut affecter négativement la performance." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10357,31 +10358,31 @@ msgstr "" "produite." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Questions depuis le démarrage : %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Information" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Trafic réseau depuis le démarrage : %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ce serveur MySQL fonctionne depuis %1$s. Il a démarré le %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10389,19 +10390,19 @@ msgstr "" "Ce serveur est un serveur maître et esclave dans le processus " "de réplication." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Ce serveur est un serveur maître dans le processus de réplication." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Ce serveur est un serveur esclave dans le processus de " "réplication." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10409,11 +10410,11 @@ msgstr "" "Pour plus d'information sur l'état de la réplication sur ce serveur, " "consultez la section de réplication." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "État de la réplication" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10422,35 +10423,35 @@ msgstr "" "dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " "inexactes." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Reçu" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Envoyé" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "max. de connexions simultanées" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Tentatives échouées" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Arrêts prématurés" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Commande" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10458,11 +10459,11 @@ msgstr "" "Le nombre de connexions avortées en raison d'une interruption du client sans " "fermeture adéquate de la connexion." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10472,18 +10473,18 @@ msgstr "" "mais qui ont excédé la valeur de binlog_cache_size et ont utilisé un fichier " "temporaire pour stocker les énoncés de la transaction." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Le nombre de transactions qui ont utilisé la cache temporaire du log binaire." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10496,11 +10497,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10508,7 +10509,7 @@ msgstr "" "Le nombre de tables temporaires en mémoire créées automatiquement par le " "serveur lors de l'exécution d'énoncés." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10516,7 +10517,7 @@ msgstr "" "Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est " "survenue (probablement un doublon sur la clé)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10524,23 +10525,23 @@ msgstr "" "Le nombre de fils d'exécution utilisés pour INSERT DELAYED. Un fil est " "utilisé pour chacune des tables sur lesquelles un INSERT DELAYED a lieu." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre de lignes écrites via INSERT DELAYED." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Le nombre de fois qu'une ligne a été supprimée d'une table." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10550,7 +10551,7 @@ msgstr "" "une table portant un certain nom. Ceci est appelé "découverte". Ce " "paramètre indique le nombre de fois que des tables ont été découvertes." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10561,7 +10562,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10569,7 +10570,7 @@ msgstr "" "Le nombre de requêtes pour lire une ligne via une clé. Si élevé, c'est une " "bonne indication que vos tables sont correctement indexées." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10579,7 +10580,7 @@ msgstr "" "Ceci est augmenté si vous interrogez une colonne indexée avec un critère de " "fourchette ou si vous parcourez l'index." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10587,7 +10588,7 @@ msgstr "" "Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. " "Utilisé surtout pour optimiser ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10600,7 +10601,7 @@ msgstr "" "demandent à MySQL de parcourir des tables en entier, ou vous avez des " "jointures qui n'utilisent pas correctement les clés." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10612,35 +10613,35 @@ msgstr "" "tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " "écrites de façon à tirer parti des index que vous avez définis." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Le nombre de requêtes d'insertion de lignes dans une table." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Le nombre de pages de mémoire-tampon qui ont été effacées." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Le nombre de pages libres." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10650,7 +10651,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10662,11 +10663,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10675,7 +10676,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10683,11 +10684,11 @@ msgstr "" "Le nombre de lectures séquentielles effectuées par InnoDB. Ceci survient " "quand InnoDB fait un parcours séquentiel intégral de la table." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10695,7 +10696,7 @@ msgstr "" "Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant " "à une lecture directe d'une page." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10709,51 +10710,51 @@ msgstr "" "Ceci compte le nombre de fois qu'une telle attente a été nécessaire. Si la " "taille de la réserve est adéquate, cette valeur devrait être petite." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10761,35 +10762,35 @@ msgstr "" "Le nombre d'attentes en raison d'un tampon du fichier témoin trop petit; il " "fallait attendre qu'il se libère avant de continuer." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Le nombre d'écritures fsync() sur le fichier témoin." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10798,51 +10799,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre de lignes supprimées des tables InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre de lignes insérées dans des tables InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre de lignes lues dans des tables InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10851,7 +10852,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10860,7 +10861,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10870,15 +10871,15 @@ msgstr "" "maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " "de clés." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Pourcentage de la cache de clés qui est utilisé (valeur calculée)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Le nombre de requêtes de lecture d'un bloc de clés depuis la cache." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10889,7 +10890,7 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " "requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10897,22 +10898,22 @@ msgstr "" "Échecs dans la cache de clés, en calculant le taux de lectures physiques " "comparé aux requêtes de lecture (valeur calculée)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Le nombre de requêtes en vue d'écrire un bloc de clé dans la cache." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Le nombre d'écritures physiques d'un bloc de clés vers le disque." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Pourcentage d'écritures physiques versus les requêtes d'écriture (valeur " "calculée)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10923,18 +10924,18 @@ msgstr "" "pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore " "été compilée." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" "Le nombre maximum de connexions simultanées depuis le démarrage du serveur." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Le nombre de lignes en attente d'écriture (INSERT DELAYED)." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10942,19 +10943,19 @@ msgstr "" "Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " "est probablement trop petite." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Le nombre de flux de données qui sont ouverts." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10964,19 +10965,19 @@ msgstr "" "peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " "commande FLUSH QUERY CACHE." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "La quantité de mémoire libre dans la cache de requêtes." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10988,7 +10989,7 @@ msgstr "" "afin de peaufiner la taille de la cache. La stratégie utilisée pour " "déterminer quelles requêtes seront retirées est LRU (least recently used)." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10996,19 +10997,19 @@ msgstr "" "Le nombre de requêtes non en cache (impossible à placer en cache, ou non " "cachée en raison du paramètre query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Le nombre total de blocs dans la cache de requêtes." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'état de la réplication sans échec (pas encore implantée)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11016,13 +11017,13 @@ msgstr "" "Le nombre de jointures qui n'ont pas utilisé d'index. Si cette valeur est " "supérieure à 0, vérifiez soigneusement les indexes de vos tables." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Le nombre de jointures qui ont utilisé une recherche par plage sur une table " "de référence." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11031,7 +11032,7 @@ msgstr "" "ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " "tables.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11039,19 +11040,19 @@ msgstr "" "Le nombre de jointures qui ont utilisé des plages sur la première table. " "(Normalement non critique même si cette valeur est élevée.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" "Le nombre de jointures qui ont nécessité le parcours complet de la première " "table." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Le nombre de tables temporaires actuellement ouvertes par le fil d'exécution " "SQL de l'esclave." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11059,11 +11060,11 @@ msgstr "" "Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave " "a envoyé à nouveau des transactions." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ceci est à ON si ce serveur est un esclave connecté à un maître." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11071,14 +11072,14 @@ msgstr "" "Le nombre de fils d'exécution dont le temps de création a excédé " "slow_launch_time secondes." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Le nombre de requêtes dont le temps d'exécution a excédé long_query_time " "secondes." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11087,23 +11088,23 @@ msgstr "" "Le nombre d'opérations de fusion effectuées par l'algorithme de tri. Si ce " "nombre est élevé, augmentez la valeur du paramètre sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Le nombre de lignes triées." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Le nombre de tri effectués via un parcours de la table." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11115,7 +11116,7 @@ msgstr "" "des problèmes de performance, commencez par optimiser vos requêtes, puis " "subdivisez vos tables ou encore utiliser la réplication." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11125,11 +11126,11 @@ msgstr "" "calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous " "devriez augmenter la taille de cette cache." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11142,47 +11143,47 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Taux de succès de la cache des fils d'exécution (valeur calculée)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Démarrer la surveillance" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Consignes / réglages" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Terminé de modifier les graphiques" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Ajouter un graphique" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Modifier les graphiques" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Taux de rafraîchissement" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Colonnes du graphique" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Disposition du graphique" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11190,15 +11191,15 @@ msgstr "" "La disposition du graphique est stockée dans le navigateur. Vous pouvez " "vouloir l'exporter si vous avez une configuration complexe." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Ramener la valeur par défaut" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Consignes pour la surveillance" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11212,7 +11213,7 @@ msgstr "" "slow_query_log ou general_log. Cependant, general_log produit beaucoup de " "données et augmente jusqu'à 15% la charge du serveur" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11224,11 +11225,11 @@ msgstr "" "est supportée par MySQL 5.1.6 et supérieur. Vous pouvez tout de même " "utiliser les graphiques de serveur." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Utilisation de la surveillance : " -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11238,7 +11239,7 @@ msgstr "" "pouvez ajouter des graphiques et modifier le taux de rafraîchissement sous " "«Paramètres», ou supprimer tout graphique via l'cône de rouage." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11251,11 +11252,11 @@ msgstr "" "statistiques sous forme de requêtes groupées, par la suite vous pouvez " "cliquer sur tout énoncé SELECT pour une analyse plus poussée." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Note : " -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11268,87 +11269,87 @@ msgstr "" "portion de temps et de désactiver general_log puis de vider la table " "correspondante lorsque la surveillance n'est plus requise." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Graphique prédéfini" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Variables d'état" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Choisissez les séries : " -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Couramment surveillés" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "ou entrez un nom de variable : " -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Afficher en tant que valeur différentielle" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Appliquer un diviseur" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Ajouter l'unité aux valeurs de données" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Ajouter cette série" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Effacer la série" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Séries dans le graphique : " -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Statistiques des journaux" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Sélectionnez un intervalle de temps : " -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Enlever les données variables des énoncés INSERT pour un meilleur groupement" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Choisissez depuis quel journal les statistiques doivent être générées." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Les résultats sont regroupés par le texte des requêtes." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Analyseur de requêtes" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d seconde" msgstr[1] "%d secondes" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11668,8 +11669,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:296 msgid "" @@ -11721,8 +11722,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:306 #, php-format @@ -11741,8 +11742,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:310 #, php-format @@ -11752,8 +11753,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." @@ -12125,35 +12126,35 @@ msgstr "Vérifier l'intégrité référentielle : " msgid "Showing tables" msgstr "Affichage des tables" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Espace utilisé" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effectif" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistiques" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statique" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamique" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Longueur de ligne" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Taille de la ligne" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Prochain index automatique" @@ -12180,7 +12181,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Contrainte de clé étrangère" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Spatial" @@ -12230,49 +12231,49 @@ msgstr "Un index a été ajouté sur %s" msgid "Show more actions" msgstr "Montrer d'autres actions" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Déplacer des colonnes" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Déplacez les colonnes en les faisant glisser vers le haut ou le bas." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Modifier la vue" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "vue relationnelle" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Suggérer des optimisations quant à la structure de la table" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Ajouter une colonne" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "En fin de table" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "En début de table" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Après %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Créer un index sur  %s colonnes" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partitionné" @@ -12816,8 +12817,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Le ratio actuel de mémoire libre pour la cache de requêtes par rapport à la " "mémoire totale de la cache est de %s%%. Il devrait se situer à plus de 80%%" @@ -12888,9 +12889,9 @@ msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " "value is, the better (This rules firing limit: 0.1%%)" msgstr "" -"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s" -"%%. Il est souhaitable que cette valeur soit faible (Limite pour cette " -"règle: 0.1%%)" +"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s%" +"%. Il est souhaitable que cette valeur soit faible (Limite pour cette règle: " +"0.1%%)" #: libraries/advisory_rules.txt:188 msgid "Query cache max size" @@ -12969,8 +12970,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de tous les tris causent la création de tables temporaires, cette " "valeur devrait être sous les 10%%." @@ -13501,8 +13502,8 @@ msgstr "" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" -"Max_used_connections est à %s%% de max_connections, devrait être sous les " -"80%%" +"Max_used_connections est à %s%% de max_connections, devrait être sous les 80%" +"%" #: libraries/advisory_rules.txt:392 msgid "Percentage of aborted connections" diff --git a/po/gl.po b/po/gl.po index 1cc497b8c5..dcbc52331c 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-04-17 16:56+0200\n" "Last-Translator: Julio Guerra \n" "Language-Team: Independant\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: Weblate 0.9\n" @@ -38,53 +38,54 @@ msgstr "" "xanela pai ou porque as opcións de seguranza do seu navegador están " "bloqueando as actualizacións entre xanelas." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Buscar" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Ir" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nome da chave" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Descrición" @@ -117,13 +118,13 @@ msgstr "Comentario da base de datos: " msgid "Table comments" msgstr "Comentarios da táboa" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Comentarios da táboa" msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Liga a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Comentarios" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Non" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Non" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Ver o volcado (esquema) da base de datos" msgid "No tables found in database." msgstr "Non foi posíbel atopar ningunha táboa na base de datos." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Seleccionar todo" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Deseleccionar todo" @@ -321,12 +322,12 @@ msgstr "Engadir limitacións" msgid "Switch to copied database" msgstr "Cambiar á base de datos copiada" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Orde alfabética" @@ -349,17 +350,17 @@ msgstr "Editar ou exportar esquema relacional" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Táboa" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Filas" @@ -374,21 +375,21 @@ msgstr "en uso" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Creación" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Última actualización" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Última revisión" @@ -451,7 +452,7 @@ msgid "Del" msgstr "Eliminar" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ou" @@ -492,85 +493,87 @@ msgstr "Enviar esta procura" msgid "Access denied" msgstr "Denegouse o acceso" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "polo menos unha das palabras" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "todas as palabras" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "a frase exacta" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "como expresión regular" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Procurar os resultados para \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s ocorrencia dentro da táboa %2$s" -msgstr[1] "%1$s ocorrencias dentro da táboa %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Visualizar" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Eliminar as coincidencias para a táboa %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Eliminar" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s ocorrencia" msgstr[1] "Total: %s ocorrencias" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s ocorrencia dentro da táboa %2$s" +msgstr[1] "%1$s ocorrencias dentro da táboa %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Visualizar" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Eliminar as coincidencias para a táboa %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Eliminar" + +#: db_search.php:362 msgid "Search in database" msgstr "Procurar na base de datos" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palabras ou valores a buscar (ou comodín é: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Atopar:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "As palabras divídense cun carácter de espazo (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Dentro das táboas:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Dentro da columna:" @@ -609,18 +612,18 @@ msgstr "O seguemento non está activado." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" -"%s." +"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" +"s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Vista" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -630,93 +633,89 @@ msgstr "Replicación" msgid "Sum" msgstr "Suma" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Cos marcados:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Marcalos todos" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Quitarlles as marcas a todos" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Borrar" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Verificar a táboa" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimizar a táboa" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Reparar a táboa" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizar a táboa" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Engaidr prefixo á táboa" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Substituír o prefixo da táboa" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiar a táboa con prefixo" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dicionario de datos" @@ -729,9 +728,9 @@ msgstr "Táboas seguidas" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de datos" @@ -748,17 +747,17 @@ msgstr "Creada" msgid "Updated" msgstr "Actualizada" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Estado" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Acción" @@ -790,7 +789,7 @@ msgstr "Instantánea da estrutura" msgid "Untracked tables" msgstr "Táboas non seguidas" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Seguir a táboa" @@ -927,11 +926,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " -"%sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" +"sdocumentación%s para averiguar como evitar este límite." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1005,13 +1004,13 @@ msgstr "" "non ser que lle incrementen os limites de tempo de php." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "A seu orde de SQL executouse sen problemas" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Voltar" @@ -1096,8 +1095,8 @@ msgstr "O contrasinal está vacío!" msgid "The passwords aren't the same!" msgstr "Os contrasinais non son iguais!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Engadir usuario" @@ -1115,7 +1114,7 @@ msgid "Close" msgstr "Fechar" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1142,13 +1141,13 @@ msgstr "Datos estáticos" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Outro" @@ -1178,7 +1177,7 @@ msgstr "Tráfico do servidor (en KiB)" msgid "Connections since last refresh" msgstr "Conexións dende o último refresco" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesos" @@ -1238,13 +1237,13 @@ msgstr "Arquivo de intercambio do sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1296,7 +1295,7 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Conexións" @@ -1335,11 +1334,11 @@ msgstr "%d táboa(s)" msgid "Questions" msgstr "Preguntas" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Tráfico" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Configuración" @@ -1362,8 +1361,8 @@ msgstr "Por favor engada polo menos unha variable á serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Ningunha" @@ -1463,7 +1462,7 @@ msgstr "Cambiar configuración" msgid "Current settings" msgstr "Configuración actual" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Título do gráfico" @@ -1546,7 +1545,7 @@ msgstr "Explicar saída" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Tempo" @@ -1638,10 +1637,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1693,9 +1692,9 @@ msgstr "Variable/ fórmula utilizada" msgid "Test" msgstr "Proba" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Cancelar" @@ -1723,9 +1722,9 @@ msgstr "Eliminando columna" msgid "Adding Primary Key" msgstr "Engadindo chave primaria" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Conforme" @@ -1801,7 +1800,7 @@ msgstr "Borrando" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "A definición dunha función gardada debe conter unha sentencia RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" @@ -1840,8 +1839,8 @@ msgstr "Mostrar a caixa das pesquisas" msgid "No rows selected" msgstr "Non hai ningunha fileira seleccionada" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Mudar" @@ -1856,7 +1855,7 @@ msgid "%d is not valid row number." msgstr "%d non é un número de fileira válido." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2352,16 +2351,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "por hora" @@ -2461,8 +2460,8 @@ msgstr "Ordenar pola chave" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opcións" @@ -2515,7 +2514,7 @@ msgid "The row has been deleted" msgstr "Eliminouse o rexistro" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Matar (kill)" @@ -2542,27 +2541,27 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "a pesquisa levou %01.4f segundos" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operacións de resultados da procura" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Ver os datos GIS" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Crear vista" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Non se atopou o vínculo" @@ -2635,46 +2634,46 @@ msgstr "A partir de aquí debe permitir cookies." msgid "Javascript must be enabled past this point" msgstr "Javascript debe estar activo a partir de aquí" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Non se definiu ningún índice!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentario" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Eliminouse a chave primaria" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Eliminouse o índice %s" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2683,9 +2682,9 @@ msgstr "" "Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase " "eliminar un deles." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Bases de datos" @@ -2695,7 +2694,7 @@ msgstr "Bases de datos" msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2708,102 +2707,102 @@ msgstr "Servidor" msgid "Structure" msgstr "Estrutura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacións" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Seguemento" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Lanza" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Procurar cun exemplo" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilexios" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Acontecementos" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Deseñador" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Usuarios" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronizar" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Ficheiro de rexistro binario" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variábeis" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Conxuntos de caracteres" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Extensións" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motores" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Houbo un erro" @@ -2845,67 +2844,67 @@ msgstr "Táboas recentes" msgid "There are no recent tables" msgstr "Non hai táboas recentes" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está dispoñíbel neste servidor de MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s foi desactivado neste servidor de MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "estado da táboa descoñecido: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Base de datos de orixe" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Non se atopou o tema %s!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "A base de datos non é válida" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Nome de táboa non válido" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A táboa %1$s foi renomeada a %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Non foi posíbel gardar as preferencias de IU da táboa" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2914,7 +2913,7 @@ msgstr "" "Produciuse un fallo ao limpar as preferencias de IU da táboa (vexa $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2922,22 +2921,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Función" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operador" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Valor" @@ -2945,7 +2944,7 @@ msgstr "Valor" msgid "Table Search" msgstr "Procura na táboa" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Editar/Inserir" @@ -3075,14 +3074,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3342,8 +3341,8 @@ msgstr "Reciba a benvida a %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Isto débese, posibelmente, a que non se creou un ficheiro de configuración. " "Tal vez queira utilizar %1$ssetup script%2$s para crear un." @@ -3461,12 +3460,12 @@ msgstr "Táboas" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Datos" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "De máis (Overhead)" @@ -3578,18 +3577,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "orde SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3677,7 +3676,7 @@ msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" msgid "Click to toggle" msgstr "Prema para trocar" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Examine o seu computador:" @@ -3687,8 +3686,8 @@ msgstr "Examine o seu computador:" msgid "Select from the web server upload directory %s:" msgstr "Seleccionar directorio de subida no servidor web %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Non se pode acceder ao directorio que designou para os envíos" @@ -3872,7 +3871,7 @@ msgstr "Volver ao valor por omisión" msgid "Allow users to customize this value" msgstr "Permitir aos usuarios personalizar este valor" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4160,7 +4159,7 @@ msgid "Character set of the file" msgstr "Conxunto de caracteres do ficheiro" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formato" @@ -4462,7 +4461,7 @@ msgstr "Moldura de navegación" msgid "Customize appearance of the navigation frame" msgstr "Personalizar a aparencia da moldura de navegación" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servidores" @@ -5786,7 +5785,7 @@ msgstr "" "Define se a caixa de procuras debe permanecer en pantalla despois da súa " "execución" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Manter a caixa de procuras ca consulta" @@ -6120,7 +6119,7 @@ msgstr "Falta a extensión %s. Por favor comprobe a configuración do PHP." msgid "possible deep recursion attack" msgstr "posible ataque deep recursion" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6128,16 +6127,16 @@ msgstr "" "O servidor non responde (ou o socket local do servidor non se configurou " "correctamente)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "O servidor non responde." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" "Por favor comprobe os privilexios do directorio que contén a base de datos." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detalles..." @@ -6193,8 +6192,8 @@ msgstr "Crear táboas" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nome" @@ -6295,8 +6294,8 @@ msgstr ", @TABLE@ será o nome da táboa" #, 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 "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "utilizar cadeas de formato de tempo. Produciranse transformacións en " @@ -6308,7 +6307,7 @@ msgid "use this for future exports" msgstr "usar esto en futuras exportacións" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Conxunto de caracteres do ficheiro:" @@ -6832,8 +6831,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6893,7 +6892,7 @@ msgstr "Evento" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definición" @@ -6954,7 +6953,7 @@ msgstr "Mostrar tipos MIME" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Servidor" @@ -7152,8 +7151,8 @@ msgstr "Exportar o contido" msgid "No data found for GIS visualization." msgstr "Non se atoparon datos para a visualización GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)." @@ -7320,77 +7319,77 @@ msgstr "Modo de compatiblidade SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non empregar AUTO_INCREMENT cos valores cero" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Agochar" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Por causa da sua lonxitude,
    este campo pode non ser editable" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binario - non editar" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "directorio de recepción do servidor web" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserción con %s fileiras" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "e despois" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Inserir como nova fila e ignorar erros" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Mostrar procura de inserción" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Voltar" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Voltar para esta páxina" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha flecha para moverse a calquera sitio" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Mostrar procura SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" @@ -7414,7 +7413,7 @@ msgid "To" msgstr "Ata" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Enviar" @@ -7430,7 +7429,7 @@ msgstr "Engadir prefixo" msgid "Do you really want to execute the following query?" msgstr "Está realmente seguro de executar a seguinte petición?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Sen cambios" @@ -7681,7 +7680,7 @@ msgid "" msgstr "" "Consulte a documentación para saber como actualizar a táboa Column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Gardouse a procura de SQL" @@ -7728,6 +7727,10 @@ msgstr "" msgid "no description" msgstr "sen descrición" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Quitarlles as marcas a todos" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Configuración do escravo" @@ -7765,8 +7768,8 @@ msgstr "Estado do mestre" msgid "Slave status" msgstr "Estado do escravo" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variábel" @@ -7793,7 +7796,7 @@ msgstr "Calquera usuario" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Use campo de texto" @@ -7826,10 +7829,10 @@ msgid "Generate Password" msgstr "Xerar un contrasinal" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7840,7 +7843,7 @@ msgstr "a procura seguinte fallou: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Sentímolo, non se puido restaurar o evento eliminado." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "A consulta almacenada foi:" @@ -7855,7 +7858,7 @@ msgstr "O evento %1$s foi modificado." msgid "Event %1$s has been created." msgstr "O evento %1$s foi creado." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "Houbo un ou máis erros procesando a sua petición:" @@ -7864,14 +7867,14 @@ msgstr "Houbo un ou máis erros procesando a sua petición:" msgid "Edit event" msgstr "Editar evento" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Erro procesando a petición" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalles" @@ -7884,7 +7887,7 @@ msgstr "Nome do evento" msgid "Event type" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Cambiar a %s" @@ -7911,13 +7914,13 @@ msgstr "Fin" msgid "On completion preserve" msgstr "Preservar ó completar" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7942,7 +7945,7 @@ msgstr "Debe proporcionar un tipo valido para o evento." msgid "You must provide an event definition." msgstr "Debe proporcionar unha definición do evento." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Novo" @@ -7962,7 +7965,7 @@ msgstr "Estado do planificador de eventos" msgid "Returns" msgstr "Retorna" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7970,125 +7973,125 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rutina non válida: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Sentimolo, non se puido restaurar a rutina eliminada." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "A rutina %1$s foi modificada." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "A rutina %1$s foi creada." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Editar rutina" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Nome da rutina" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parámetros" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Dirección" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Tamaño/Definir*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Engadir parámetro" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Eliminar último parámetro" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Tipo de retorno" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Retornar lonxitude/valores" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Retornar opcións" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "É determinista" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Tipo de seguridade" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Acceso de datos SQL" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Debe proporcionar un nome á rutina" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Debe proporcionar unha definición da rutina." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "resultados da execución da rutina %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Executar rutina" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Parámetros da rutina" @@ -8371,7 +8374,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Linguaxe descoñecida: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Servidor actual" @@ -8402,50 +8405,50 @@ msgstr "Base de datos de destino" msgid "Click to select" msgstr "Prema para seleccionar" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Executar procura/s SQL no servidor %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Limpar" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Gardar esta procura de SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 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:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Delimitador" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Mostrar esta consulta aquí outra vez" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Só visualizar" @@ -8555,7 +8558,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Índice" @@ -8608,12 +8611,12 @@ msgid "As defined:" msgstr "Como se define:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primaria" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Texto completo" @@ -8627,12 +8630,12 @@ msgstr "" msgid "after %s" msgstr "Despois de %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Engadir %s columna(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Debe engadir polo menos unha columna." @@ -8694,7 +8697,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Mostra un vínculo a esta imaxe (ou sexa, baixada directa de blob)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8897,8 +8900,8 @@ msgid "Protocol version" msgstr "Versión do protocolo" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Usuario" @@ -9041,20 +9044,20 @@ 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:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Non hai ningunha base de datos" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filtrar táboas por nome" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtrar táboas por nome" @@ -9075,7 +9078,7 @@ msgstr "Mostrar/Agochar o menú esquerdo" msgid "Save position" msgstr "Gardar a posición" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Crear relación" @@ -9135,37 +9138,37 @@ msgstr "Agochar/Mostrar táboas sen relación" msgid "Number of tables" msgstr "Número de táboas" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Eliminar a relación" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Operador de relación" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Excepto" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "subpetición" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Renomear a" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Novo nome" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Agregar" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Opcións activas" @@ -9329,13 +9332,13 @@ msgstr "Seleccione o ficheiro de rexistro binario que queira ver" msgid "Files" msgstr "Ficheiros" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Interrumpir as procuras mostradas" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Mostrar as procuras completas" @@ -9351,7 +9354,7 @@ msgstr "Posición" msgid "Original position" msgstr "Posición orixinal" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Información" @@ -9379,11 +9382,11 @@ msgstr "Replicación do principal" msgid "Slave replication" msgstr "Replicación do escravo" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Activar as estatísticas" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9629,7 +9632,7 @@ msgid "None" msgstr "Ningunha" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilexios propios de táboa" @@ -9646,7 +9649,7 @@ msgstr "Administración" msgid "Global privileges" msgstr "Privilexios globais" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilexios propios de base de datos" @@ -9666,7 +9669,7 @@ msgstr "Información sobre o acceso (login)" msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Non se achou ningún usuario." @@ -9715,7 +9718,7 @@ msgstr "Elimináronse sen problemas os usuarios seleccionados." msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Modificar privilexios" @@ -9728,7 +9731,7 @@ msgid "Export all" msgstr "Exportar todo" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Calquera" @@ -9745,84 +9748,84 @@ msgstr "Privilexios para %s" msgid "Users overview" msgstr "Vista xeral dos usuarios" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Eliminar os usuarios seleccionados" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Retirarlles todos os privilexios activos aos usuarios e eliminalos a " "continuación." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario seleccionado na táboa de privilexios." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilexios propios de columna" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Engadir privilexios para esta base de datos" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Os caracteres comodín _ e % deberíanse escapar con \\ para podelos usar " "literalmente" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Engadir privilexios para a esta táboa" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Modificar a información de acceso (login) / Copiar o utilizador" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Crear un utilizador novo cos mesmos privilexios e..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... manter o anterior." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... eliminar o anterior das táboas de utilizadores." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... retirarlle todos os privilexios activos ao anterior e eliminalo despois." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9830,41 +9833,41 @@ msgstr "" " ... eliminar o anterior das táboas de utilizadores e recargar os " "privilexios despois." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Base de datos para o usuario" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Crear unha base de datos co mesmo nome e conceder todos os privilexios" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilexios sobre a base de datos "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios que teñen acceso a "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "específico da base de datos" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "comodín" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "O usuario foi engadido." @@ -10152,23 +10155,23 @@ msgstr "Mostrar só valores de alerta" msgid "Filter by category..." msgstr "Filtrar por categoría..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Mostrar valores sen formato" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Ligazóns relacionadas:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Executar analizador" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Instruccións" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10176,7 +10179,7 @@ msgstr "" "O sistema de consellos pode darlle valores recomendados para as variables do " "servidor analizando as variables de estado do servidor." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10185,14 +10188,14 @@ msgstr "" "Note sen embargo que este sistema proporciona recomendacións baseadas en " "simples cálculos e a dedo que pode non ser necesarias no seu sistema." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10200,31 +10203,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Preguntas dende o inicio: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Informacións" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico de rede dende o inicio: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Este servidor de MySQL leva funcionando %1$s. Iniciouse às %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10232,18 +10235,18 @@ msgstr "" "Este servidor funciona como maestro e esclavo nun proceso de " "replicación." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor funciona como maestronun proceso de replicación." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor funciona como esclavo nun proceso de replicación." -#: server_status.php:1082 +#: server_status.php:1081 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -10257,11 +10260,11 @@ msgstr "" "b>. Para máis información acerca do estado de replicación do servidor visite " "a sección sobre replicación." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Estado da replicación" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10270,47 +10273,47 @@ msgstr "" "que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " "resultar incorrectas." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Recibido" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Enviado" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "conexións simultáneas máximas" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Tentativas falidas" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Cancelado" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "Identificador" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Orde" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Non se puido conectar co servidor de MySQL" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10320,16 +10323,16 @@ msgstr "" "excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " "para almacenar instrucións para a transacción." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Número de transaccións que utilizaron o caché do rexistro binario." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10341,11 +10344,11 @@ msgstr "" "incremente o valor de tmp_table_size para que as táboas temporais se baseen " "na memoria en vez de no disco." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Número de ficheiros temporais creados por mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10353,7 +10356,7 @@ msgstr "" "Número de táboas temporais na memoria creadas automaticamente polo servidor " "ao executar instrucións." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10361,7 +10364,7 @@ msgstr "" "Número de fileiras escritas con INSERT DELAYED que sofriron algún erro " "(probabelmente unha chave duplicada)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10369,23 +10372,23 @@ msgstr "" "Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " "na que se utiliza INSERT DELAYED recibe o seu propio fío." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Número de fileiras INSERT DELAYED escritas." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Número de instrucións FLUSH executadas." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Número de instrucións COMMIT internas." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Número de veces que se eliminou unha fileira dunha táboa." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10395,7 +10398,7 @@ msgstr "" "se sabe dunha táboa cun nome dado. Isto chámase descuberta. " "Handler_discovery indica o número de veces que se descobriron táboas." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10406,7 +10409,7 @@ msgstr "" "completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " "indexada." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10414,7 +10417,7 @@ msgstr "" "Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " "é unha boa indicación de que as procuras e táboas están ben indexadas." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10424,7 +10427,7 @@ msgstr "" "increméntase se está a procurar unha columna de índice cunha limitación de " "intervalo ou se está a examinar un índice." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10432,7 +10435,7 @@ msgstr "" "Número de peticións para ler a fileira anterior na orde da chave. Este " "método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10444,7 +10447,7 @@ msgstr "" "Posibelmente terá un monte de procuras que esixan que MySQL examine táboas " "completas ou ten unións que non usan as chaves axeitadamente." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10456,35 +10459,35 @@ msgstr "" "táboas non están indexadas axeitadamente ou que as súas procuras non están " "escritas para aproveitar os índices de que dispón." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Número de peticións para actualizar unha fileira nunha táboa." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Número de peticións para inserir un ficheiro nunha táboa." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Número de páxinas que conteñen datos (suxos ou limpos)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Número de páxinas actualmente suxas." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Número de páxinas do búfer que se pediu que se limpasen." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Número de páxinas libres." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10494,7 +10497,7 @@ msgstr "" "actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " "algunha outra razón." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10506,11 +10509,11 @@ msgstr "" "se pode calcular así: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total do búfer, en páxinas." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10519,7 +10522,7 @@ msgstr "" "cando unha procura vai examinar unha porción grande dunha táboa mais en orde " "aleatoria." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10527,11 +10530,11 @@ msgstr "" "Número de pre-lecturas secuenciais iniciadas por innoDB. Isto acontece cando " "InnoDB realiza un exame secuencial completo dunha táboa." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Número de peticións de lectura lóxicas feitas por InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10539,7 +10542,7 @@ msgstr "" "Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo " "que efectuar por medio de lecturas dunha única páxina." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10553,55 +10556,55 @@ msgstr "" "que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser " "pequeno." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Número de veces que se escribiu no búfer InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Número de operacións fsync() até o momento." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Número actual de operacións fsync() pendentes." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Número actual de lecturas pendentes." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Número actual de escritas pendentes." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Cantidade de datos lida até o momento, en bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Número total de lecturas de datos." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Número total de escritas de datos." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Cantidade de datos escrita até o momento, en bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10609,35 +10612,35 @@ msgstr "" "Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e " "houbo que agardar até que se limpase para continuar." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Número de peticións de escrita no rexistro." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Número de escritas físicas no ficheiro de rexistro." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Número de escritas fsyncss feitas no ficheiro de rexistro." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Número de fsyncs do ficheiro de rexistro pendentes." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Escritas no ficheiro de rexistro pendentes." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Número de bytes escritos no ficheiro de rexistro." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Número de páxinas creadas." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10646,55 +10649,55 @@ msgstr "" "cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente " "en bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Número de páxinas lidas." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Número de páxinas escritas." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Número de bloqueo de fileiras polos que se está a agardar agora mesmo." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Tempo que, de media, leva adquirir un bloqueo sobre unha fileira, en " "milisegundos." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Tempo total empregado na adquisición de bloqueos sobre as fileiras, en " "milisegundos." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Número de veces que houbo que agardar polo bloqueo dunha fileira." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Número de fileiras eliminadas das táboas InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Número de fileiras inseridas nas táboas InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Número de fileiras lidas das táboas InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Número de fileiras actualizadas en táboas InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10702,7 +10705,7 @@ msgstr "" "Número de bloques chave na caché de chaves que se mudaron mais que aínda non " "se limparon para o disco. Antes era Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10710,7 +10713,7 @@ msgstr "" "Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " "para determinar canta caché de chave está en uso." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10720,17 +10723,17 @@ msgstr "" "referencia superior que indica o número máximo de bloques que se teñen " "empregado." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaxe de uso do límite de ficheiros abertos" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Número de peticións para ler un bloque chave da caché." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10740,26 +10743,26 @@ msgstr "" "grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " "relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Número de peticións para escribir un bloque chave na caché." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Número de escritas físicas dun bloque chave no disco." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10770,19 +10773,19 @@ msgstr "" "procura diferentes para a mesma pesquisa. O valor por omisión é 0, que " "significa que aínda non se compilou ningunha procura." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Número de procuras que están a agardar para seren escritas nas fileiras " "INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10790,38 +10793,38 @@ msgstr "" "Número de táboas abertas en total. Se a cantidade é grande, o valor da caché " "de táboas posibelmente é demasiado pequeno." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Número de ficheiros abertos." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Número de fluxos abertos (utilizado principalmente para o rexistro)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Número de táboas abertas." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Cantidade de memoria libre para a caché de procuras." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Número de impactos na caché." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Número de procuras adicionadas na caché." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10833,7 +10836,7 @@ msgstr "" "caché de procuras. A caché de procuras utiliza unha estratexia de utilizado " "menos recentemente (LRU) para decidir que procuras debe eliminar da caché." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10841,19 +10844,19 @@ msgstr "" "Número de procuras non enviadas á caché (que non se poden enviar debido á " "configuración de query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Número de procuras rexistradas na caché." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Número total de bloques na caché de procuras." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Estado da replicación en modo seguro (aínda non realizado)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10861,13 +10864,13 @@ msgstr "" "Número de unións que non utilizan índices. Se este valor non for 0, debería " "comprobar con atención os índices das táboas." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Número de unións que utilizaron un intervalo de procura nunha táboa de " "referencia." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10875,7 +10878,7 @@ msgstr "" "Número de unións sen chaves que comproban a utilización de chaves despois de " "cada fila (se non é 0, debería comprobar con atención os índices das táboas)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10883,15 +10886,15 @@ msgstr "" "Número de unións que utilizaron intervalos na primeira táboa (Normalmente " "non é grave, mesmo de ser grande)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Número de unións que realizaron un exame completo da primeira táboa." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Número de táboas temporais abertas actualmente polo fío SQL escravo." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10899,11 +10902,11 @@ msgstr "" "Número total de veces (desde o inicio) que o fío de replicación SQL escravo " "reintentou as transaccións." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto está ON se este servidor é un escravo conectado a un máster." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10911,14 +10914,14 @@ msgstr "" "Número de fíos aos que lles levou crearse máis segundos dos indicados en " "slow_launch_time." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Número de procuras ás que lles levou máis segundos dos indicados en " "long_query_time." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10928,23 +10931,23 @@ msgstr "" "este valor for grande, sería ben que considerase incrementar o valor da " "variábel de sistema sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Número de ordenacións feitas con intervalos." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Número de fileiras ordenadas." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Número de ordenacións realizadas examinando a táboa." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10956,7 +10959,7 @@ msgstr "" "debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa " "ou táboas, ora utilizar replicación." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -10966,11 +10969,11 @@ msgstr "" "calcular como Threads_created/Connections. Se este valor for vermello, " "debería aumentar a thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Número de conexións abertas neste momento." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10982,63 +10985,63 @@ msgstr "" "non fornece unha mellora notábel no desempeño se ten unha boa implementación " "de fíos.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaxe de caché de fíos %%" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Número de fíos que non están a durmir." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Iniciar monitorización" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Engadir gráfico" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Tasa de refresco" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Columnas do gráfico" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Ordenación dos gráficos" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Resetear a predeterminado" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Instruccións de monitorización" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11047,7 +11050,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11055,18 +11058,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11074,11 +11077,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Por favor note:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11086,86 +11089,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Gráfico predefinido" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Variable(s) de estado" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Seleccionar series:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Monitorizacións comúns" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "ou escriba o nome da variable:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Mostrar como valor diferencial" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Aplicar un divisor" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Engadir esta serie" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Limpar series" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Series no gráfico:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Estatísticas de rexistro" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Rango temporal seleccionado:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Os resultados están agrupados polo texto da consulta." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Analizador de procuras" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segundo" msgstr[1] "%d segundos" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11972,35 +11975,35 @@ msgstr "Comprobar a integridade das referencias:" msgid "Showing tables" msgstr "Mostrando táboas" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Uso do espazo" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efectivo" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Estatísticas da fileira" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "estático" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinámico" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Lonxitude da fileira" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Tamaño da fila" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12026,7 +12029,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Límite das chaves externas" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12078,51 +12081,51 @@ msgstr "Engadiusese un índice a %s" msgid "Show more actions" msgstr "Mostrar máis accións" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Eliminar columna(s)" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Editar vista" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Vista das relacións" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Propor unha estrutura para a táboa" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Engadir columna" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Ao final da táboa" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "No comezo da táboa" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Despois de %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columnas" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "particionado" @@ -12617,8 +12620,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12744,8 +12747,8 @@ msgstr "" #, fuzzy, php-format #| msgid "%s%% of all connections are aborted. This value should be below 1%%" msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "O %s%% de toda-las conexións foron canceladas. Este valor debería ser menor " "ó 1%%" @@ -13246,8 +13249,8 @@ msgstr "" #: libraries/advisory_rules.txt:390 #, fuzzy, php-format #| msgid "" -#| "The number of opened files is at %s%% of the limit. It should be below " -#| "85%%" +#| "The number of opened files is at %s%% of the limit. It should be below 85%" +#| "%" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" diff --git a/po/he.po b/po/he.po index 9c9b30b488..c9232ded7f 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -37,53 +37,54 @@ msgstr "" "לא ניתן לעדכן את חלון דפדפן היעד. יתכן שסגרת את חלון ההורה, או שהגדרות " "האבטחה של הדפדפן שלך מוגדרות כך שיחסמו עדכונים בין חלונות." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "חיפוש" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "ביצוע" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "שם מפתח" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "תיאור" @@ -115,13 +116,13 @@ msgstr "הערה על מסד הנתונים: " msgid "Table comments" msgstr "הערות לטבלה" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -130,30 +131,30 @@ msgstr "הערות לטבלה" msgid "Column" msgstr "עמודה" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "סוג" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -191,8 +192,8 @@ msgstr "קישורים אל" msgid "Comments" msgstr "הערות" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -201,15 +202,15 @@ msgstr "הערות" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "לא" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -224,8 +225,8 @@ msgstr "לא" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -240,11 +241,11 @@ msgstr "צפייה בשליפה (תבנית) של מסד נתונים" msgid "No tables found in database." msgstr "לא נמצאו טבלאות במסד הנתונים." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "בחירת הכול" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "ביטול הבחירה הכללית" @@ -319,12 +320,12 @@ msgstr "הוספת הגבלות" msgid "Switch to copied database" msgstr "מעבר למסד הנתונים שהועתק" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "איסוף" @@ -345,17 +346,17 @@ msgstr "עריכה או יצוא של תבנית יחסית" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "טבלה" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "שורות" @@ -370,21 +371,21 @@ msgstr "בשימוש" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "יצירה" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "עדכון אחרון" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "נבדק לאחרונה" @@ -447,7 +448,7 @@ msgid "Del" msgstr "מחיקה" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "או" @@ -488,85 +489,87 @@ msgstr "שליחת שאילתה" msgid "Access denied" msgstr "הגישה נדחתה" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "לפחות אחת מהמילים" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "כל המילים" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "הביטוי במדויק" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "כביטוי רגולרי" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "תוצאות החיפוש אחר „%s“ %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "תוצאה אחת (%1$s) בטבלה %2$s" -msgstr[1] "%1$s תוצאות בטבלה %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "עיון" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "האם למחוק את התוצאות עבור הטבלה %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "מחיקה" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "סה״כ: פריט אחד (%s)" msgstr[1] "סה״כ: %s פריטים" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "תוצאה אחת (%1$s) בטבלה %2$s" +msgstr[1] "%1$s תוצאות בטבלה %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "עיון" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "האם למחוק את התוצאות עבור הטבלה %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "מחיקה" + +#: db_search.php:362 msgid "Search in database" msgstr "חיפוש במסד הנתונים" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "מילים או ערכים לחיפוש אחריהם (תו כללי: „%“):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "חיפוש:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "מילים מופרדות ברווח („ “)." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "בתוך הטבלאות:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "בתוך העמודה:" @@ -605,8 +608,8 @@ msgstr "המעקב אינו פעיל." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -614,7 +617,7 @@ msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא msgid "View" msgstr "תצוגה" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -624,93 +627,89 @@ msgstr "שכפול" msgid "Sum" msgstr "סכום" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון כבררת המחדל של שרת MySQL זה." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "עם הנבחרים:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "סימון הכול" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "ביטול הסימון הכולל" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "בדיקת טבלאות בעלות תקורה" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "יצוא" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "ריקון" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "השמטה" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "בדיקת טבלה" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "ייעול טבלה" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "תיקון טבלה" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "ניתוח טבלה" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "הוספת קידומת לטבלה" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "החלפת קידומת הטבלה" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "העתקת הטבלה עם קידומת" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "מילון נתונים" @@ -723,9 +722,9 @@ msgstr "טבלאות במעקב" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "מסד נתונים" @@ -742,17 +741,17 @@ msgstr "מועד היצירה" msgid "Updated" msgstr "עודכנה" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "מצב" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "פעולה" @@ -784,7 +783,7 @@ msgstr "העתק של המבנה" msgid "Untracked tables" msgstr "טבלאות שאינן במעקב" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "מעקב אחר טבלה" @@ -919,8 +918,8 @@ msgstr "" #: import.php:86 #, 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 לקבלת דרכים לעקיפת " "הגבלה זו." @@ -994,13 +993,13 @@ msgstr "" "לא יוכל להשלים יבוא זה אלמלא גבול זמן ההמתנה של ה־php יוגדל." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "שאילתת ה־SQL שלך בוצעה בהצלחה" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "חזרה" @@ -1086,8 +1085,8 @@ msgstr "הססמה ריקה!" msgid "The passwords aren't the same!" msgstr "הססמאות אינן זהות!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "הוספת משתמש" @@ -1105,7 +1104,7 @@ msgid "Close" msgstr "סגירה" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1132,13 +1131,13 @@ msgstr "נתונים סטטיים" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "סה״כ" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "אחר" @@ -1168,7 +1167,7 @@ msgstr "תעבורת השרת (ב־KiB)" msgid "Connections since last refresh" msgstr "התחברויות מאז הרענון האחרון" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "תהליכים" @@ -1231,13 +1230,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1297,7 +1296,7 @@ msgstr "" msgid "Bytes received" msgstr "התקבל" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "חיבורים" @@ -1338,11 +1337,11 @@ msgstr "%s טבלאות" msgid "Questions" msgstr "Persian" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1369,8 +1368,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "ללא" @@ -1470,7 +1469,7 @@ msgstr "תכונות קשר כלליות" msgid "Current settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1557,7 +1556,7 @@ msgstr "הסברת SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "זמן" @@ -1665,10 +1664,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ייצוא" @@ -1723,9 +1722,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1756,9 +1755,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "אישור" @@ -1862,7 +1861,7 @@ msgstr "מוחק %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1904,8 +1903,8 @@ msgstr "שאילתת SQL" msgid "No rows selected" msgstr "לא נבחרו שורות" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "שינוי" @@ -1920,7 +1919,7 @@ msgid "%d is not valid row number." msgstr "%d הוא לא מספר שורה תקין." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2489,16 +2488,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "לשנייה" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "לדקה" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "לשעה" @@ -2615,8 +2614,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "פעולות" @@ -2677,7 +2676,7 @@ msgid "The row has been deleted" msgstr "השורה נמחקה" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2704,30 +2703,30 @@ msgstr "סה\"כ" msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "קישור לא נמצא" @@ -2799,56 +2798,56 @@ msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." msgid "Javascript must be enabled past this point" msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "אין אינדקסים מוגדרים!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "אינדקסים" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "ייחודי" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "מספור" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "הערות" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "המפתח הראשי הוסר" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "אינדקס %s הוסר" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "מאגרי נתונים" @@ -2858,7 +2857,7 @@ msgstr "מאגרי נתונים" msgid "Server" msgstr "שרת" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2871,104 +2870,104 @@ msgstr "שרת" msgid "Structure" msgstr "מבנה" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "הכנסה" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "פעולות" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "שאילתה" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "הרשאות" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "משתמש" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "דו\"ח בינארי" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "משתנים" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "קידודים" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "מנועים" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "שגיאה" @@ -3014,71 +3013,71 @@ msgstr "אין טבלאות" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "אין מידע מצב מפורט על מנוע אחסון זה." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s זמין על שרת MySQL זה." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s מובטל על שרת MySQL זה." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "שרת MySQL לא תומך במנוע אחסון %s." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "חפש במסד הנתונים" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "חפש במסד הנתונים" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "טבלה %s שונתה אל %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3086,23 +3085,23 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "פונקציה" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "פעולות" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "ערך" @@ -3112,7 +3111,7 @@ msgstr "ערך" msgid "Table Search" msgstr "חיפוש" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3247,14 +3246,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3512,8 +3511,8 @@ msgstr "ברוך הבא אל %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3623,12 +3622,12 @@ msgstr "טבלאות" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "נתונים" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "תקורה" @@ -3737,18 +3736,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "שאילתת SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3841,7 +3840,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3851,8 +3850,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -4047,7 +4046,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4327,7 +4326,7 @@ msgid "Character set of the file" msgstr "חבילת הקידוד של הקובץ:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "תבנית" @@ -4648,7 +4647,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5921,7 +5920,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "שאילתת SQL" @@ -6234,23 +6233,23 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "השרת אינו מגיב" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6310,8 +6309,8 @@ msgstr "יצירת עמוד חדש" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "שם" @@ -6432,8 +6431,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:285 @@ -6441,7 +6440,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "חבילת הקידוד של הקובץ:" @@ -6918,8 +6917,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6995,7 +6994,7 @@ msgstr "נשלח" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7070,7 +7069,7 @@ msgstr "סוגי MIME זמינים" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "מארח" @@ -7278,8 +7277,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." @@ -7446,78 +7445,78 @@ msgstr "תואם MySQL 4.0" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "בינארי" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "משום אורכם,
    השדה הזה יכול להיות בלתי עריך " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "בינארי - אין לערוך" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 #, fuzzy msgid "web server upload directory" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "ואז" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7545,7 +7544,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "שליחה" @@ -7565,7 +7564,7 @@ msgstr "הוספת שדה חדש" msgid "Do you really want to execute the following query?" msgstr "האם אתה באמת רוצה " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "ללא שינוי" @@ -7820,7 +7819,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "שאילתות SQL מועדפות" @@ -7867,6 +7866,10 @@ msgstr "" msgid "no description" msgstr "ללא תיאור" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "ביטול הסימון הכולל" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7902,8 +7905,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "משתנה" @@ -7928,7 +7931,7 @@ msgstr "כל משתמש" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "השתמש בשדה טקסט" @@ -7959,10 +7962,10 @@ msgid "Generate Password" msgstr "ייצור סיסמא" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7973,7 +7976,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7989,7 +7992,7 @@ msgstr "טבלה %s נמחקה" msgid "Event %1$s has been created." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7999,16 +8002,16 @@ msgstr "" msgid "Edit event" msgstr "נשלח" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "תהליכים" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8023,7 +8026,7 @@ msgstr "סוג אירוע" msgid "Event type" msgstr "סוג אירוע" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8058,13 +8061,13 @@ msgstr "סיום" msgid "On completion preserve" msgstr "השלם הכנסות" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8089,7 +8092,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8111,7 +8114,7 @@ msgstr "" msgid "Returns" msgstr "אפשרויות טבלה" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8119,140 +8122,140 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "שמות עמודה" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "יצירה" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "אורך/ערכים*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "הוספת שדה חדש" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "שינוי שם מאגר נתונים אל" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "אורך/ערכים*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "אפשרויות טבלה" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "סוג שאילתה" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8570,7 +8573,7 @@ msgstr "rtl" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8605,53 +8608,53 @@ msgstr "חפש במסד הנתונים" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "לוח שנה" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "אל תכתוב מחדש על שאילתה זאת מחוץ לחלון זה" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "הראה את שאילתה כאן שוב" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "ראה רק" @@ -8746,7 +8749,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "אינדקס" @@ -8801,12 +8804,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "ראשי" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fulltext" @@ -8820,13 +8823,13 @@ msgstr "" msgid "after %s" msgstr "לאחר %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "הוספת %s תאים" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -8873,7 +8876,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9025,8 +9028,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "משתמש" @@ -9152,17 +9155,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "אין מאגרי נתונים" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "שינוי סדר הטבלה לפי" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9186,7 +9189,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9252,47 +9255,47 @@ msgstr "" msgid "Number of tables" msgstr "מספר שדות" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "תצוגת יחסים" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "ייצוא" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "בשאילתה" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "שינוי שם טבלה אל" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "שם משתמש" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "יצירה" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9472,13 +9475,13 @@ msgstr "" msgid "Files" msgstr "שדות" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" @@ -9494,7 +9497,7 @@ msgstr "מיקום" msgid "Original position" msgstr "מיקום מקורי" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "מידע" @@ -9523,11 +9526,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "הפעלת סטטיסטיקה" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9778,7 +9781,7 @@ msgid "None" msgstr "ללא" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" @@ -9795,7 +9798,7 @@ msgstr "ניהול" msgid "Global privileges" msgstr "הרשאות גלובליות" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" @@ -9815,7 +9818,7 @@ msgstr "מידע כניסה" msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9867,7 +9870,7 @@ msgstr "%s מסדי נתונים נמחקו בהצלחה." msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "עריכת הרשאות" @@ -9882,7 +9885,7 @@ msgid "Export all" msgstr "ייצוא" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "כל דבר" @@ -9904,118 +9907,118 @@ msgstr "הרשאות" msgid "Users overview" msgstr "סקירת משתמשים" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "הענקה" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "הסרת משתמשים שנבחרו" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 לפני שאתה ממשיך." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "הוספת הרשאות למאגר הנתונים הבא" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... שמירת הישן." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... מחיקת הישן מטבלאות המשתמשים." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "עולמי" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "תו כללי" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy msgid "User has been added." msgstr "שדה %s נמחק" @@ -10298,49 +10301,49 @@ msgstr "ראיית טבלאות" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "ראיית טבלאות" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "יחסים" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "סוג שאילתה" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "פונקציה" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10348,116 +10351,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "משפטים" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "התקבל" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "נשלח" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "ניסיונות כושלים" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "בוטל" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "קוד זיהוי" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "פקודה" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10465,78 +10468,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10544,7 +10547,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10552,42 +10555,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10595,33 +10598,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10630,243 +10633,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "חבילת הקידוד של הקובץ:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10874,99 +10877,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10974,18 +10977,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10993,69 +10996,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "סוג שאילתה" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "שבת" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "הוספת שדה חדש" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "רענון" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "הוספת/מחיקת עמודות שדה" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11064,7 +11067,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11072,18 +11075,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11091,11 +11094,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11103,90 +11106,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "שינוי שם מאגר נתונים אל" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "בחירת טבלאות" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "הוספת משתמש חדש" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "שאילתת SQL" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "סטטיסטיקת שורה" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "בחירת הכל" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "סוג שאילתה" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11194,7 +11197,7 @@ msgid_plural "%d seconds" msgstr[0] "לשנייה" msgstr[1] "לשנייה" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11969,35 +11972,35 @@ msgstr "" msgid "Showing tables" msgstr "ראיית טבלאות" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "שימוש מקום" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "יעיל" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "סטטיסטיקת שורה" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "דינאמי" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "אורך שורה" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "גודל שורה" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12022,7 +12025,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12081,56 +12084,56 @@ msgstr "אינדקס נוסף אל %s" msgid "Show more actions" msgstr "ראיית מידע PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "הוספת %s תאים" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "תצוגת הדפסה" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "תצוגת יחסים" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "הצעת מבנה טבלה" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "הוספת %s תאים" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "בסוף טבלה" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "בתחילת טבלה" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "לאחר %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "יצירת אינדקס על %s  עמודות" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12645,8 +12648,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12775,8 +12778,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/hi.po b/po/hi.po index c3dcecadb5..ae78729c96 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-03-27 16:58+0200\n" "Last-Translator: Michal Čihař \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: Weblate 0.8\n" @@ -37,53 +37,54 @@ msgstr "" "लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है," "या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "ढूंढें" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "जाएँ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "मुख्यनाम" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "वर्णन" @@ -116,13 +117,13 @@ msgstr "डाटाबेस टिप्पणि: " msgid "Table comments" msgstr "टेबल टिप्पणि:" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "टेबल टिप्पणि:" msgid "Column" msgstr "स्तम्भ" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "प्रकार/किस्म" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "के लिए लिंक" msgid "Comments" msgstr "टिप्पणी" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "टिप्पणी" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "नहीं" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "नहीं" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "डेटाबेस का डंप (स्कीमा) नजार msgid "No tables found in database." msgstr "डाटाबेस में कोई टेबल नहीं।" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "सभी का चयन करें" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "सभी को रद्द करें" @@ -322,12 +323,12 @@ msgstr "शर्तें जोडें" msgid "Switch to copied database" msgstr "नक़ल किये गए डाटाबेस पर जायें" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "क्रम में करें" @@ -338,8 +339,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " -"%sयहाँ%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %" +"sयहाँ%s पर क्लिक करें." #: db_operations.php:639 msgid "Edit or export relational schema" @@ -350,17 +351,17 @@ msgstr "संबंधपरक स्कीमा को संपादित #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "टेबल " #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "रो" @@ -375,21 +376,21 @@ msgstr "उपयोग में है" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "रचना" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "पिछला नवीनीकरण" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "पिछली जाँच" @@ -453,7 +454,7 @@ msgid "Del" msgstr "हटाइए" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "अथवा" @@ -494,87 +495,87 @@ msgstr "क्वरी भेजें" msgid "Access denied" msgstr "पहुँच निषेधित" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "कोई भी एक शब्द" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "सभी शब्द" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "यथार्थ वाक्यांश" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "नियमित अभिव्यक्ति के रूप में" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "%s %s के लिये परिणाम खोजें:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s टेबल के अंदर %s मैच हैं." -msgstr[1] "%s टेबल के अंदर %s मैच हैं." - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "ब्राउज़" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "इस %s टेबल से मैच हटाएँ" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "मिटाएँ" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "कुल: %s मैच" msgstr[1] "कुल: %s मैच" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s टेबल के अंदर %s मैच हैं." +msgstr[1] "%s टेबल के अंदर %s मैच हैं." + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "ब्राउज़" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "इस %s टेबल से मैच हटाएँ" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "मिटाएँ" + +#: db_search.php:362 msgid "Search in database" msgstr "डाटाबेस में खोजें" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "खोजो:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "शब्द स्पेस(\" \") करक्टेर से अलग किये गए हैं." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "टेबल में:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "काँलम के अंदर:" @@ -613,8 +614,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 पढ़ें." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -622,7 +623,7 @@ msgstr "इस द्रश्य में कम से कम इतनी msgid "View" msgstr "दृश्य" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -632,93 +633,89 @@ msgstr "प्रतिकृति" msgid "Sum" msgstr "जोड" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर तयशुदा भंडारण इंजन है." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "चुने हुओं को:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "सभी को चेक करें" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "सभी को अनचेक करें" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "ओवर्हेअद वाली तालुकाओं को चेक करें." -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "निर्यात" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "छपाई द्रश्य." -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "खाली" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "रद्द" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "टेबल को चेक करें" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "टेबल को अनुकूलित करें" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "टेबल को मरम्मत करें" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "टेबल पर उपसर्ग जोड़ें" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "डेटा शब्दकोश" @@ -731,9 +728,9 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "डाटाबेस" @@ -750,17 +747,17 @@ msgstr "बनाया" msgid "Updated" msgstr "अद्यतन" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "स्थिति" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "कार्य" @@ -792,7 +789,7 @@ msgstr "संरचना क्षणचित्र" msgid "Untracked tables" msgstr "लापता टेबलएं" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "टेबलओं को ट्रैक करें" @@ -945,8 +942,8 @@ msgstr "" #: import.php:86 #, 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 पढ़ें." @@ -1019,13 +1016,13 @@ msgstr "" "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है." -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "वापस" @@ -1117,8 +1114,8 @@ msgstr "पासवर्ड खाली है" msgid "The passwords aren't the same!" msgstr "पासवर्ड मिलते झूलते नहीं हैं." -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "naya upyokta" @@ -1136,7 +1133,7 @@ msgid "Close" msgstr "बंद" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1167,13 +1164,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "कुल" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1205,7 +1202,7 @@ msgstr "सर्वर चुनिये" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "प्रक्रियां" @@ -1275,13 +1272,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1343,7 +1340,7 @@ msgstr "" msgid "Bytes received" msgstr "प्राप्त" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "कनेक्शन" @@ -1386,11 +1383,11 @@ msgstr " %s टेबलें" msgid "Questions" msgstr "संस्करण" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "ट्रैफ़िक" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1419,8 +1416,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "कोई नहीं" @@ -1520,7 +1517,7 @@ msgstr "सेटिंग्स प्रबंधक" msgid "Current settings" msgstr "अधिक सेटिंग्स" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Default title" msgid "Chart Title" @@ -1614,7 +1611,7 @@ msgstr "SQL की व्याख्या " #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "समय" @@ -1724,10 +1721,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "आयात" @@ -1787,9 +1784,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "रद्द" @@ -1817,9 +1814,9 @@ msgstr "काँलम गिराना" msgid "Adding Primary Key" msgstr "प्राथमिक कुंजी जोड़" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "ठीक है" @@ -1915,7 +1912,7 @@ msgstr "मिटाएँ" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1960,8 +1957,8 @@ msgstr "क्वेरी बॉक्स दिखाएँ" msgid "No rows selected" msgstr "कोई चयनित रो नहीं" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "बदलिये" @@ -1978,7 +1975,7 @@ msgid "%d is not valid row number." msgstr "%d वैध रो संख्या नहीं है" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2498,16 +2495,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "प्रति सेकंड" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "प्रति मिनट" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "प्रति घंटे" @@ -2624,8 +2621,8 @@ msgstr "कुंजी सॉर्ट" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "विकल्प" @@ -2680,7 +2677,7 @@ msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2708,29 +2705,29 @@ msgstr "कुल" msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "दृश्य बनाइये" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "लिंक नहीं मिला" @@ -2803,55 +2800,55 @@ msgstr "कुकीज़ इस बिंदु अतीत सक्षम msgid "Javascript must be enabled past this point" msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "परिभाषित सूचकांक नहीं पाए गए!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "सूचकांक" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "अद्वितीय" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "जमा" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "प्रमुखता" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "टिप्पणी" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "प्राथमिक कुंजी गिरा दी गयी है" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "सूचकांक %s गिरा दिया गया है" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "डाटाबेस" @@ -2861,7 +2858,7 @@ msgstr "डाटाबेस" msgid "Server" msgstr "सर्वर" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2874,104 +2871,104 @@ msgstr "सर्वर" msgid "Structure" msgstr "संरचना" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "इनसर्ट" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "कार्रवाई" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "नज़र रखना" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "ट्रिगर" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "टेबल खली लग रही है" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "डाटाबेस खाली लग रहा है" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "क्वरी" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "प्रिविलेज" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "नियमित कार्य" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "डिजाइनर" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "यूसर" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "सिंक्रनाइज़" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "बाइनरी लोग" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "प्रक्रियां" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "चरित्र सेट" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "इंजन" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "त्रुटि" @@ -3021,75 +3018,75 @@ msgstr "टेबल गणना" msgid "There are no recent tables" msgstr "कोई कॉन्फ़िगर सर्वर मौजूद नहीं है" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "इस भंडारण इंजन स्थिति के लिए कोई विस्तृत जानकारी उपलब्ध नहीं है." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s इस MySQL सर्वर पर उपलब्ध है." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s इस MySQL सर्वर के लिए निष्क्रिय कर दिया गया है." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show master status" msgid "unknown table status: " msgstr "मास्टर अवस्था" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "स्रोत डेटाबेस" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "विषयवस्तु %s नहीं मिला है!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "अमान्य डेटाबेस" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "अवैध टेबल नाम" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि." -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "टेबल %s का नाम बदल कर %s रखा गया है." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3097,22 +3094,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "ऑपरेटर" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "मूल्य" @@ -3122,7 +3119,7 @@ msgstr "मूल्य" msgid "Table Search" msgstr "ढूंढें" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3258,14 +3255,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3525,11 +3522,11 @@ msgstr "%s मे स्वागत है" #: libraries/auth/config.auth.lib.php:98 #, 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$ssetup script" -"%2$s का उपयोग करें." +"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2" +"$s का उपयोग करें." #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3640,12 +3637,12 @@ msgstr "टेबल" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "डाटा" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "जरूरत से ज्यादा" @@ -3759,18 +3756,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL क्वरी" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3862,7 +3859,7 @@ msgstr "%s कार्यक्षमताएक एक बग के द् msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "अपने कंप्यूटर ब्राउज़ करें" @@ -3872,8 +3869,8 @@ msgstr "अपने कंप्यूटर ब्राउज़ करें msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s; " -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता" @@ -4059,7 +4056,7 @@ msgstr "मूलभूत मान को बहाल" msgid "Allow users to customize this value" msgstr "कर्ता को इस मूल्य को अनुकूलित करने की अनुमति दें " -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4341,7 +4338,7 @@ msgid "Character set of the file" msgstr "फ़ाइल का चरित्र सेट" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "प्रारूप" @@ -4639,7 +4636,7 @@ msgstr "नेविगेशन फ्रेम" msgid "Customize appearance of the navigation frame" msgstr "नेविगेशन फ्रेम की दिखावट को अनुकूलित करें" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "सर्वर" @@ -5921,7 +5918,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6232,23 +6229,23 @@ msgstr "%s विस्तार गायब है. कृपया अपन msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "सर्वर जवाब नहीं दे रहा" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "विवरण..." @@ -6305,8 +6302,8 @@ msgstr "टेबल बनायें" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "नाम" @@ -6406,8 +6403,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:285 @@ -6415,7 +6412,7 @@ msgid "use this for future exports" msgstr "भविष्य के निर्यात के लिए इस का उपयोग करें" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "फ़ाइल का चरित्र सेट" @@ -6880,8 +6877,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6951,7 +6948,7 @@ msgstr "घटना" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7020,7 +7017,7 @@ msgstr "फीचरस दिखाओ" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "होस्ट" @@ -7230,8 +7227,8 @@ msgstr "निर्यात सामग्री" msgid "No data found for GIS visualization." msgstr "चार्ट के लिए कोई डेटा नहीं मिला" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" @@ -7407,75 +7404,75 @@ msgstr "SQL संगतता मोड" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "छिपाना" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "बइनरी" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "बइनरी - एडिट मत करिये" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "वेब सर्वर अपलोड निर्देशिका" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "और फिर" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे " -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "एक और नई रो इनसर्ट करें" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" @@ -7503,7 +7500,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "सबमिट" @@ -7523,7 +7520,7 @@ msgstr "अनुक्रमणिका जोड़" msgid "Do you really want to execute the following query?" msgstr "क्या आप सचमुच चाहते है की" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "कोइ बदलाव नहीं" @@ -7775,7 +7772,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "बुकमार्क किया हुआ SQL-क्वरी" @@ -7824,6 +7821,10 @@ msgstr "" msgid "no description" msgstr "कोई विवरण नहीं" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "सभी को अनचेक करें" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "दास विन्यास" @@ -7858,8 +7859,8 @@ msgstr "मास्टर की स्थिति" msgid "Slave status" msgstr "स्लाव की स्थिति" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "स्थिति" @@ -7884,7 +7885,7 @@ msgstr "कोई भी यूसर" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7915,10 +7916,10 @@ msgid "Generate Password" msgstr "पासवर्ड उत्पन्न" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7930,7 +7931,7 @@ msgstr "निम्नलिखित क्वरीों क्रिया msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7947,7 +7948,7 @@ msgstr "टेबल %s को रद्द किया गया है." msgid "Event %1$s has been created." msgstr "%1$s टेबल बना दिया गया है" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7958,16 +7959,16 @@ msgstr "" msgid "Edit event" msgstr "सर्वर को संपादित करें" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "याचिका प्रसंस्करणमें त्रुटि" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -7984,7 +7985,7 @@ msgstr "इवेंट प्रकार " msgid "Event type" msgstr "इवेंट प्रकार " -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8018,13 +8019,13 @@ msgstr "आखरी" msgid "On completion preserve" msgstr "पूरा इनसर्टस" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8049,7 +8050,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8071,7 +8072,7 @@ msgstr "" msgid "Returns" msgstr "रिटर्न प्रकार" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8079,145 +8080,145 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "अवैध सर्वर सूचकांक: %s" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "टेबल %s को रद्द किया गया है." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s टेबल बना दिया गया है" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "संपादन मोड" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "नियमित कार्य" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "सीधे संपर्क" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "लंबाई/अर्थ*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add index" msgid "Add parameter" msgstr "अनुक्रमणिका जोड़" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "डेटाबेस को हटा दे" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "रिटर्न प्रकार" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "लंबाई/अर्थ*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "टेबल विकल्प" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "सुरक्षा" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8553,7 +8554,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "अज्ञात भाषा: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "मौजूदा सर्वर" @@ -8584,52 +8585,52 @@ msgstr "लक्ष्य डेटाबेस" msgid "Click to select" msgstr "चयन करने के लिए क्लिक करें." -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "%s सर्वर पर SQL प्रशन चलेयें" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "डाटाबेस %s में SQL प्रशन चलाइये " -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "स्पष्ट" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "कोलम" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "एक ही नाम के सभी बुकमार्क्स बदल दें" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "सीमांकक" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "यह query वापस यहीं दिखायें " -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "केवल देखिये" @@ -8713,7 +8714,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "सूची" @@ -8762,12 +8763,12 @@ msgid "As defined:" msgstr "जैसे परिभाषित:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "प्राथमिक" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "प्राथमिक" @@ -8781,13 +8782,13 @@ msgstr "" msgid "after %s" msgstr "%s के बाद" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s क्षेत्र जोडें" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8834,7 +8835,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8986,8 +8987,8 @@ msgid "Protocol version" msgstr "अधिक सेटिंग्स" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "यूसर" @@ -9108,17 +9109,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "कोइ डाटाबेस नहिं" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "टेबल क्रमांक को बदलिये " -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9143,7 +9144,7 @@ msgstr "शो/छिपाना बाएँ मेनू" msgid "Save position" msgstr "स्थिति को बचा" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "संबंध बनायें" @@ -9207,49 +9208,49 @@ msgstr "बिना रिश्ते की टेबलओं को दि msgid "Number of tables" msgstr "टेबल की संख्या" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "संबंध हटाना" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "संबंध ऑपरेटर" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "सिवाय" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "Query" msgid "subquery" msgstr "उप-क्वरी" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename database to" msgid "Rename to" msgstr "नाम बदल कर ____ रखें" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "नया नेम" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "कुल" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Actions" msgid "Active options" @@ -9419,13 +9420,13 @@ msgstr "द्विआधारी लॉग देखने के लिए msgid "Files" msgstr "फाइलें" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "पूर्ण क्वरीों को दिखाएँ" @@ -9441,7 +9442,7 @@ msgstr "स्थिति" msgid "Original position" msgstr "मूल स्थिति" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "सूचना" @@ -9470,11 +9471,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "आँकडे Enable करें" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9718,7 +9719,7 @@ msgid "None" msgstr "नहीं" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "केवल टेबल के प्रिविलेज" @@ -9735,7 +9736,7 @@ msgstr "एडमिनिस्ट्रेशन" msgid "Global privileges" msgstr "वैश्विक प्रिविलेज" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "केवल डाटाबेस के प्रिविलेज" @@ -9755,7 +9756,7 @@ msgstr "प्रवेश जानकारी" msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9806,7 +9807,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "प्रिविलेज एडिट करें" @@ -9821,7 +9822,7 @@ msgid "Export all" msgstr "निर्यात" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "कोई" @@ -9843,115 +9844,115 @@ msgstr "प्रिविलेज" msgid "Users overview" msgstr "यूसर सिंहावलोकन" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "अनुदान" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "चयनित यूसर हटायें" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "केवल कोलम के प्रिविलेज" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... पुराने रखना" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "पुराने यूसर को टेबल से हटाना" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "यूसर के लिए डेटाबेस" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान " -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "वैश्विक" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "डेटाबेस-विशेष" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "वाइल्डकार्ड" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10231,51 +10232,51 @@ msgstr "खुला टेबल शो" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "खुला टेबल शो" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "पसंबंधित लिंक" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "क्वरी प्रकार" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "एडमिनिस्ट्रेशन" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10283,118 +10284,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "स्टार्टअप पेज अनुकूलित करें" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "रो आँकड़े" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "प्रतिकृति स्थिति" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "प्राप्त" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "भेजा" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "अधिकतम वर्तमान कनेक्शन" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "असफल प्रयास" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "रद्द" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "आदेश" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10402,78 +10403,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10481,7 +10482,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10489,42 +10490,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10532,33 +10533,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10567,244 +10568,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "आयात की गई फ़ाइल का प्रारूप" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10812,99 +10813,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10912,18 +10913,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10931,72 +10932,72 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ट्रैकिंग सक्रिय नहीं है." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "क्षेत्र रोयाँ" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "अनुक्रमणिका जोड़" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "ताज़ा करना" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "मूलभूत मान को बहाल" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11005,7 +11006,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11013,18 +11014,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11032,11 +11033,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11044,95 +11045,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "डेटाबेस को हटा दे" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "टेबल चुनिये" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "अवैध टेबल नाम" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "एक नया सर्वर जोडें" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL क्वरी" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "आँकड़े दिखाएँ" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "पेज चुनिये" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "क्वरी प्रकार" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11140,7 +11141,7 @@ msgid_plural "%d seconds" msgstr[0] "सेकंड" msgstr[1] "सेकंड" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11910,35 +11911,35 @@ msgstr "Referential अखंडता की जाँच करें" msgid "Showing tables" msgstr "टेबल दिखाओ" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "स्थान उपयोग" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "वास्तविक" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "पंक्ति आँकड़े" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "स्थिर" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "गतिशील" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "रौ की लंबाई" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "रौ का आकार" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11961,7 +11962,7 @@ msgstr "एक आंतरिक संबंध आवश्यक नही msgid "Foreign key constraint" msgstr "विदेशी कुंजी बाधा" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12015,53 +12016,53 @@ msgstr "%s पर एक सूचकांक जोड़ा गया है" msgid "Show more actions" msgstr "अधिक क्रियाएँ दिखाओ" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "काँलम हटाना" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "छपाई द्रश्य." -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "संबंध दृश्य" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "टेबल संरचना का प्रस्ताव" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "नया काँलम जोडें" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "टेबल के आखिर में" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "टेबल के शुरू में" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s के बाद" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr " %s  कोलम पर इन्डेक्स बनाऐं " -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "विभाजित" @@ -12598,8 +12599,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12732,8 +12733,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/hr.po b/po/hr.po index 717e0dd4ea..aa73231cb6 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \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" -"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" +"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" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -39,53 +39,54 @@ msgstr "" "nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane " "za blokiranje ažuriranja preko više prozora." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Traži" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Naziv ključa" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Opis" @@ -118,13 +119,13 @@ msgstr "Komentar baze podataka: " msgid "Table comments" msgstr "Komentari tablice" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -135,30 +136,30 @@ msgstr "Komentari tablice" msgid "Column" msgstr "Nazivi stupaca" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Vrsta" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -196,8 +197,8 @@ msgstr "Povezano s" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -206,15 +207,15 @@ msgstr "Komentari" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -229,8 +230,8 @@ msgstr "Ne" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -245,11 +246,11 @@ msgstr "Prikaži ispis (shemu) baze podataka" msgid "No tables found in database." msgstr "U bazi podataka nisu pronađene tablice." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Odaberi sve" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Ukloni sav odabir" @@ -329,12 +330,12 @@ msgstr "Dodaj prisile" msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu podataka" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Uspoređivanje" @@ -362,17 +363,17 @@ msgstr "Shema relacija" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tablica" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Redaka" @@ -387,21 +388,21 @@ msgstr "u upotrebi" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Izrada" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Posljednje ažuriranje" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Posljednja provjera" @@ -466,7 +467,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ili" @@ -511,60 +512,28 @@ msgstr "Podnesi upit" msgid "Access denied" msgstr "Pristup odbijen" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "najmanje jedna riječ" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "sve riječi" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "točan izraz" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "kao regularan izraz" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretraživanja za \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s poklapanja unutar tablice %s" -msgstr[1] "%s poklapanja unutar tablice %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Pretraživanje" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Izbacivanje podataka za tablicu" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Izbriši" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -572,31 +541,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Ukupno: %s poklapanja" msgstr[1] "Ukupno: %s poklapanja" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s poklapanja unutar tablice %s" +msgstr[1] "%s poklapanja unutar tablice %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Pretraživanje" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Izbacivanje podataka za tablicu" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Izbriši" + +#: db_search.php:362 msgid "Search in database" msgstr "Traži u bazi podataka" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Riječi ili vrijednost za pretraživanje (džoker: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Traži:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Riječi su razdvojene znakom razmaka (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tablica:" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -639,8 +640,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." @@ -649,7 +650,7 @@ msgstr "" msgid "View" msgstr "Prikaz" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -659,98 +660,94 @@ msgstr "Replikacija" msgid "Sum" msgstr "Zbroj" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "S odabirom:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Ukloni sve oznake" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Ispusti" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Provjeri tablicu" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimiziraj tablicu" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Popravi tablicu" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiziraj tablicu" -#: db_structure.php:717 +#: db_structure.php:712 #, fuzzy msgid "Add prefix to table" msgstr "Nema baza podataka" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Podatke tablice zamijeni datotekom" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Podatke tablice zamijeni datotekom" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Rječnik podataka" @@ -764,9 +761,9 @@ msgstr "Provjeri tablicu" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza podataka" @@ -785,17 +782,17 @@ msgstr "Izradi" msgid "Updated" msgstr "Ažurirano" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Stanje" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Aktivnost" @@ -830,7 +827,7 @@ msgstr "Samo strukturu" msgid "Untracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Provjeri tablicu" @@ -983,11 +980,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " -"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." +"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %" +"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1060,13 +1057,13 @@ msgstr "" "povećate vremenska ograničenja unutar php." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit uspješno je izvršen" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazad" @@ -1162,8 +1159,8 @@ msgstr "Lozinka je prazna!" msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1187,7 +1184,7 @@ msgid "Close" msgstr "Zatvori" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1217,13 +1214,13 @@ msgstr "Statički podatci" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Ostalo" @@ -1255,7 +1252,7 @@ msgstr "Odabir poslužitelja" msgid "Connections since last refresh" msgstr "Veze od zadnjeg osvježavanja" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesi" @@ -1326,13 +1323,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "kB" @@ -1394,7 +1391,7 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Veze" @@ -1435,11 +1432,11 @@ msgstr "%s tablica" msgid "Questions" msgstr "Perzijski" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Promet" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1468,8 +1465,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "bez kompresije" @@ -1569,7 +1566,7 @@ msgstr "Opće osobine relacija" msgid "Current settings" msgstr "Opće osobine relacija" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1659,7 +1656,7 @@ msgstr "Objasni SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Vrijeme" @@ -1766,10 +1763,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" @@ -1829,9 +1826,9 @@ msgstr "" msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Odustani" @@ -1862,9 +1859,9 @@ msgstr "Brisanje stupca" msgid "Adding Primary Key" msgstr "Dodavanje primarnog ključa" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "U redu" @@ -1970,7 +1967,7 @@ msgstr "Brisanje %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -2012,8 +2009,8 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Promijeni" @@ -2028,7 +2025,7 @@ msgid "%d is not valid row number." msgstr "%d nije valjani broj retka." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2603,16 +2600,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "po sekundi" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "po minuti" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "po satu" @@ -2729,8 +2726,8 @@ msgstr "Presloži po ključu" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opcije" @@ -2791,7 +2788,7 @@ msgid "The row has been deleted" msgstr "Redak je izbrisan" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Eliminiraj" @@ -2818,30 +2815,30 @@ msgstr "ukupno" msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2916,46 +2913,46 @@ msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." msgid "Javascript must be enabled past this point" msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Nema definiranog indeksa!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Jedinstveno" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Pakirano" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Najvažnije" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primarni ključ je odbačen" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Index %s je odbačen" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2963,9 +2960,9 @@ msgid "" msgstr "" "Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Baze podataka" @@ -2975,7 +2972,7 @@ msgstr "Baze podataka" msgid "Server" msgstr "Poslužitelj" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2988,104 +2985,104 @@ msgstr "Poslužitelj" msgid "Structure" msgstr "Strukturu" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Umetni" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Praćenje" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Okidači" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tablica izgleda praznom!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Baza podataka izgleda praznom!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Upit" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegije" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Događaji" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Kreator" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Korisnik" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binarni zapisnik" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Varijable" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Tablice znakova" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Dodatci" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Pogoni" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Pogreška" @@ -3136,74 +3133,74 @@ msgstr "Nema tablica" msgid "There are no recent tables" msgstr "Provjeri tablicu" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Za ovaj pogon pohranjivanje ne postoje raspoloživi podaci." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je raspoloživ na ovom MySQL poslužitelju." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s je onemogućen za ovaj MySQL poslužitelj." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Prikaži stanje potčinjenog" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Traži u bazi podataka" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nije pronađena!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Neispravna baza podataka" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Neispravan naziv tablice" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tablica %s preimenovana je u %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3211,22 +3208,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkcija" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Vrijednost" @@ -3236,7 +3233,7 @@ msgstr "Vrijednost" msgid "Table Search" msgstr "Traži" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3372,14 +3369,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3638,8 +3635,8 @@ msgstr "Dobro došli u %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete " "upotrijebiti naredbu %1$ssetup script%2$s" @@ -3752,12 +3749,12 @@ msgstr "Tablice" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Podaci" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Prepunjenje" @@ -3879,18 +3876,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL upit" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3982,7 +3979,7 @@ msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Pretraži računalo" @@ -3993,8 +3990,8 @@ msgstr "Pretraži računalo" msgid "Select from the web server upload directory %s:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti" @@ -4190,7 +4187,7 @@ msgstr "Vrati zadanu vrijednost" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4473,7 +4470,7 @@ msgid "Character set of the file" msgstr "Tablica znakova za datoteku:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Oblikovanje" @@ -4798,7 +4795,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Poslužitelji" @@ -6092,7 +6089,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL upit" @@ -6408,7 +6405,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6417,17 +6414,17 @@ msgid "" msgstr "" "(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Poslužitelj ne odgovara" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detalji..." @@ -6488,8 +6485,8 @@ msgstr "Izradi tablicu" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Naziv" @@ -6611,12 +6608,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." 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 "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -6627,7 +6624,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Tablica znakova za datoteku:" @@ -7169,8 +7166,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7245,7 +7242,7 @@ msgstr "Događaj" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7318,7 +7315,7 @@ msgstr "Raspoložive MIME vrste" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Računalo" @@ -7527,8 +7524,8 @@ msgstr "Vrsta izvoza" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." @@ -7698,82 +7695,82 @@ msgstr "Način rada SQL kompatibilnosti" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Sakrij" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarno" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "" " Zbog svoje duljine,
    uređivanje ovog polja možda neće biti moguće " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binarno - ne uređuj" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "mapa učitavanja web poslužitelja" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Ponovno pokreni umetanje s %s redaka" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "i potom" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, " "odnosno s tipkama CTRL+Strelice za premještanje bilo kamo" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" @@ -7801,7 +7798,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Podnesi" @@ -7819,7 +7816,7 @@ msgstr "Dodaj prefiks" msgid "Do you really want to execute the following query?" msgstr "Želite li zaista " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Bez izmjena" @@ -8074,7 +8071,7 @@ msgid "" msgstr "" "Pogledajte dokumentaciju radi uputa o ažuriranju tablice column_comments." -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Favorizirani SQL upit" @@ -8121,6 +8118,10 @@ msgstr "" msgid "no description" msgstr "bez opisa" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Ukloni sve oznake" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -8158,8 +8159,8 @@ msgstr "Prikaži stanje potčinjenog" msgid "Slave status" msgstr "Prikaži stanje potčinjenog" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Varijabla" @@ -8184,7 +8185,7 @@ msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" @@ -8215,10 +8216,10 @@ msgid "Generate Password" msgstr "Generiraj lozinku" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8229,7 +8230,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8246,7 +8247,7 @@ msgstr "Tablica %s je odbačen" msgid "Event %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8258,16 +8259,16 @@ msgstr "" msgid "Edit event" msgstr "Web poslužitelj" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -8284,7 +8285,7 @@ msgstr "Vrsta događaja" msgid "Event type" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8319,13 +8320,13 @@ msgstr "Završetak" msgid "On completion preserve" msgstr "Dovrši umetanja" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8350,7 +8351,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Novo" @@ -8372,7 +8373,7 @@ msgstr "" msgid "Returns" msgstr "Vrsta povratka" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8380,123 +8381,123 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tablica %s je odbačen" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy msgid "Edit routine" msgstr "Web poslužitelj" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Izravne veze" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Duljina/Vrijednosti" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Dodaj parametar" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Preimenuj bazu podataka u" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Vrsta povratka" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Duljina/Vrijednosti" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tablice" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8504,19 +8505,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dopušta pokretanje pohranjenih rutina." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8845,7 +8846,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Nepoznati jezik: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8881,53 +8882,53 @@ msgstr "Traži u bazi podataka" msgid "Click to select" msgstr "Klikni za odabir" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Pokreni SQL upit na poslužitelju %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Pokreni SQL upit na bazi podataka %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "Kalendar" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zamijeni postojećim favoritom istog naziva" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepisuj ovaj upit iz vanjskog prozora" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Razgraničavanje" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Ovaj upit ponovno prikaži ovdje" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Samo prikaz" @@ -9035,7 +9036,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -9090,12 +9091,12 @@ msgid "As defined:" msgstr "Kako je definirano:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primarni" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Puni tekst" @@ -9109,13 +9110,13 @@ msgstr "" msgid "after %s" msgstr "Poslije %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9179,7 +9180,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Prikazuje vezu za preuzimanje ove slike." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9400,8 +9401,8 @@ msgid "Protocol version" msgstr "Verzija protokola" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Korisnik" @@ -9534,17 +9535,17 @@ msgstr "" "Poslužitelj pokrenut sa Suhosin. Proučite %sdokumentaciju%s radi mogućih " "problema." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Nema baza podataka" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "naziv tablice" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9569,7 +9570,7 @@ msgstr "Prikaži/sakrij lijevi izbornik" msgid "Save position" msgstr "Spremi položaj" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Izradi relaciju" @@ -9633,48 +9634,48 @@ msgstr "Prikaži / Sakrij tablice bez relacija" msgid "Number of tables" msgstr "Broj tablica" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Izbriši relaciju" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relacija je izbrisana" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Izvoz" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "unutar upita" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Preimenuj tablicu u" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Korisničko ime" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Izradi" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9853,13 +9854,13 @@ msgstr "Odaberite binarni zapisnik za prikaz" msgid "Files" msgstr "Datoteke" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Sreži prikazane rezultate" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Prikaži pune upite" @@ -9875,7 +9876,7 @@ msgstr "Položaj" msgid "Original position" msgstr "Izvorni položaj" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Podaci" @@ -9905,11 +9906,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Omogući statistike" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10165,7 +10166,7 @@ msgid "None" msgstr "bez kompresije" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" @@ -10182,7 +10183,7 @@ msgstr "Administracija" msgid "Global privileges" msgstr "Opće privilegije" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" @@ -10204,7 +10205,7 @@ msgstr "_Podaci prijave" msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10255,7 +10256,7 @@ msgstr "Odabrani korisnici uspješno su izbrisani." msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Uredi privilegije" @@ -10270,7 +10271,7 @@ msgid "Export all" msgstr "Izvoz" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Bilo koji" @@ -10292,122 +10293,122 @@ msgstr "Privilegije" msgid "Users overview" msgstr "Pregled korisnika" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Podarivanje" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Ukloni odabrane korisnike" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilegije specifične za stupac" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Dodaj privilegije za sljedeće baze podataka" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Kako bi se mogli upotrebljavati u doslovnom smislu, džokerima \\_ i \\% mora " "prethoditi znak \\" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Izradi novog korisnika s istim privilegijama i..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... zadržati staru." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... izbriši starog iz korisničkih tablica." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... opozovi sve aktivne privilegije iz stare i potom je izbriši." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Baza podataka za korisnika" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Izradi bazu podataka istog naziva i podari sve privilegije" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "opće" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "specifično za bazu podataka" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "džoker" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10692,51 +10693,51 @@ msgstr "Prikaži otvorene tablice" msgid "Filter by category..." msgstr "Filtriraj po kategoriji" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Prikaži otvorene tablice" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vrsta upita" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funkcije" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10744,57 +10745,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10803,47 +10804,47 @@ msgstr "" "prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " "netočne." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Primljeno" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Poslano" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "najv. uzastopnih veza" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Neuspjeli pokušaji" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Naredba" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10853,17 +10854,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10875,11 +10876,11 @@ msgstr "" "moglo bi biti potrebno da povećate vrijednost tmp_table_size, kako biste " "privremene tablice smjestili u radnu memoriju, a ne na tvrdi disk." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10887,7 +10888,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10895,7 +10896,7 @@ msgstr "" "Broj redaka upisanih pomoću naredbe INSERT DELAYED, a kod kojih je došlo do " "neke vrste pogreške (vjerojatan razlog je udvojen ključ)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10903,23 +10904,23 @@ msgstr "" "Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju " "se primjeni INSERT DELAYED dobiva vlastitu granu." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Brojka koja prokazuje koliko puta je redak bio izbrisan iz tablice." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10929,7 +10930,7 @@ msgstr "" "tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. " "Handler_discover naznačuje koliko je puta tablica bila otkrivenom." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10939,7 +10940,7 @@ msgstr "" "broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja " "indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10947,7 +10948,7 @@ msgstr "" "Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj " "da su vaši upiti i tablice pravilno indeksirani." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10957,7 +10958,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10965,7 +10966,7 @@ msgstr "" "Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način " "čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10977,7 +10978,7 @@ msgstr "" "Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne " "tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10989,36 +10990,36 @@ msgstr "" "naznačuje da vaša tablice nisu pravilno indeksirane ili da vaši upiti nisu " "napisani na način koji iskorištava prednosti raspoloživih indeksa." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Broj stranica međuspremnika za koje je podnesen zahtjev za pražnjenjem." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11028,7 +11029,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11040,11 +11041,11 @@ msgstr "" "je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11052,7 +11053,7 @@ msgstr "" "Broj \"nasumičnih\" pripremnih čitanja koje je InnoDB inicijalizirao. Događa " "se kad upit mora pretražiti veliki dio tablice, ali nasumičnim redoslijedom." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11060,11 +11061,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11072,7 +11073,7 @@ msgstr "" "Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i " "morao je izvesti čitanje po jedne stranice." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11086,55 +11087,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11143,35 +11144,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11180,52 +11181,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Broj okolnosti kad je bilo potrebno čekati na zaključanost retka." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11233,7 +11234,7 @@ msgstr "" "Broj ključnih blokova u pohrani ključeva koji su izmijenjeni ali još nisu " "ispražnjeni na disk. Nekoć se nazivalo: Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11241,7 +11242,7 @@ msgstr "" "Broj neiskorištenih blokova u pohrani ključeva. Ovu vrijednost možete " "upotrijebiti za određivanje veličine pohrane ključeva koja je u upotrebi." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11251,17 +11252,17 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Oblikovanje uvezene datoteke" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11272,26 +11273,26 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih zapisivanja ključnih blokova na disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11301,17 +11302,17 @@ msgstr "" "upita. Korisno za uspoređivanje troškova različitih planova upita za isti " "upit. Zadana vrijednost je 0 i podrazumijeva da još nema složenog upita." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11319,39 +11320,39 @@ msgstr "" "Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša " "vrijednost za pohranu tablica vjerojatno je premala." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11364,7 +11365,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11372,19 +11373,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11392,12 +11393,12 @@ msgstr "" "Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će " "potrebno da pažljivo provjerite indekse vaših tablica." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Broj spojeva koji nad referentnom tablicom upotrebljavaju opseg traženja." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11406,7 +11407,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica." -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11414,17 +11415,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Broj privremenih tablica koje su trenutno otvorene od strane potčinjene SQL " "grane." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11432,12 +11433,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Uključeno (ON) ako je ovaj poslužitelj potčinjen i povezan na gospodara." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11445,14 +11446,14 @@ msgstr "" "Broj grana kojima je bilo potrebno više vremena za izradu, nego što je to " "definirano u slow_launch_time (sporo vrijeme pokretanja), u sekundama." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Broj upita kojima je bilo potrebno više vremena nego što je to definirano u " "long_query_time (dugo vrijeme upita), u sekundama." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11462,23 +11463,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11490,7 +11491,7 @@ msgstr "" "problema s performansama, bit će potrebno da prvo optimizirate svoje upite i " "potom ili podijelite svoje tablice ili upotrijebite replikaciju." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11500,11 +11501,11 @@ msgstr "" "kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, " "bit će potrebno da povećate svoju vrijednost thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11516,70 +11517,70 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Pohrana ključeva" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Dodaj %s polja" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Osvježi" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/Izbriši stupce polja" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Resetiraj na zadano" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11588,7 +11589,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11596,18 +11597,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11615,11 +11616,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11627,92 +11628,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Preimenuj bazu podataka u" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Odaberite tablice" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Neispravan naziv tablice" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Statistike redova" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Odaberite tablice" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11721,7 +11722,7 @@ msgstr[0] "po sekundi" msgstr[1] "po sekundi" msgstr[2] "po sekundi" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12500,35 +12501,35 @@ msgstr "Provjeri referencijalan integritet:" msgid "Showing tables" msgstr "Prikaži tablice" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Iskorištenost prostora" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Na snazi" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistike redova" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Duljina retka" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Veličina retka" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12555,7 +12556,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12612,56 +12613,56 @@ msgstr "Indeks je pridodan na %s" msgid "Show more actions" msgstr "Prikaži PHP podatke" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Ukloni stupac / stupce" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Prikaz ispisa" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Prikaz relacija" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Predloži strukturu tablice" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s polja" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Pri završetku tablice" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Pri početku tablice" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Poslije %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Izradi indeks  %s stupaca" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "particionirano" @@ -13185,8 +13186,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13320,8 +13321,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14425,8 +14426,8 @@ msgstr "najv. uzastopnih veza" #~ "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 b35b0862fa..294f2aa5ee 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-28 00:57+0200\n" "Last-Translator: Róbert Nagy \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "szülőablakot, vagy a böngésző biztonsági beállításai tiltják az ablakok " "közti frissítést." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Keresés" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Indítás" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Kulcsnév" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Leírás" @@ -117,13 +118,13 @@ msgstr "Megjegyzés az adatbázishoz: " msgid "Table comments" msgstr "Tábla megjegyzése" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Tábla megjegyzése" msgid "Column" msgstr "Oszlop" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Típus" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Hivatkozás" msgid "Comments" msgstr "Megjegyzések" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Megjegyzések" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nem" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Nem" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Adatbázis kiírás (vázlat) megtekintése" msgid "No tables found in database." msgstr "Nem található tábla az adatbázisban." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Mind kijelölése" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Mind törlése" @@ -323,12 +324,12 @@ msgstr "Megszorítás hozzáadása" msgid "Switch to copied database" msgstr "A másolt adatbázisra váltás" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Illesztés" @@ -351,17 +352,17 @@ msgstr "Kapcsolati séma szerkesztése, exportálása" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tábla" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Sorok" @@ -376,21 +377,21 @@ msgstr "használatban" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Létrehozás" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Utolsó frissítés" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Utolsó ellenőrzés" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Törlés" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Vagy" @@ -494,87 +495,87 @@ msgstr "Lekérdezés indítása" msgid "Access denied" msgstr "A hozzáférés megtagadva" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "legalább az egyik szó" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "minden szó" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "a pontos kifejezés" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "reguláris kifejezésként" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Keresési eredmények \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s találat a(z) %s táblában" -msgstr[1] "%s találat a(z) %s táblában" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Tartalom" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Törli a találatokat a %s táblában?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Törlés" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Összesen: %s találat" msgstr[1] "Összesen: %s találat" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s találat a(z) %s táblában" +msgstr[1] "%s találat a(z) %s táblában" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Tartalom" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Törli a találatokat a %s táblában?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Törlés" + +#: db_search.php:362 msgid "Search in database" msgstr "Keresés az adatbázisban" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Keresés:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "A szavak elválasztása szóköz karakterrel (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Belső táblák:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Mezőben:" @@ -613,18 +614,18 @@ msgstr "Nyomkövetés inaktív." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " -"%sdokumentációban%s." +"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %" +"sdokumentációban%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Nézet" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -634,93 +635,89 @@ msgstr "Többszörözés" msgid "Sum" msgstr "Összeg" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Mind kijelölése" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Kijelölés törlése" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportálás" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Kiürítés" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Eldobás" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Tábla ellenőrzése" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Tábla optimalizálása" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Tábla javítása" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Tábla elemzése" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Előtag hozzáadása a táblához" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Tábla előtagjának lecserélése" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Tábla másolása előtaggal" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Adatkönyvtár" @@ -733,9 +730,9 @@ msgstr "Nyomon követett táblák" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Adatbázis" @@ -752,17 +749,17 @@ msgstr "Létrehozva" msgid "Updated" msgstr "frissítve" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Állapot" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Művelet" @@ -794,7 +791,7 @@ msgstr "Szerkezeti pillanatkép" msgid "Untracked tables" msgstr "Nem követett táblák" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Tábla nyomon követése" @@ -933,11 +930,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " -"%sdokumentációban%s a korlátozás feloldása végett." +"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %" +"sdokumentációban%s a korlátozás feloldása végett." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1014,13 +1011,13 @@ msgstr "" "növeli meg a PHP időkorlátozását." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Az SQL-lekérdezés végrehajtása sikerült" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Vissza" @@ -1105,8 +1102,8 @@ msgstr "Üres a jelszó mező!" msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Felhasználó hozzáadása" @@ -1124,7 +1121,7 @@ msgid "Close" msgstr "Bezárás" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1153,13 +1150,13 @@ msgstr "Statikus adat" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Összesen" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Egyéb" @@ -1189,7 +1186,7 @@ msgstr "Szerverforgalom (KiB-ban)" msgid "Connections since last refresh" msgstr "Kapcsolatok a legutóbbi frissítés óta" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Folyamatok" @@ -1251,13 +1248,13 @@ msgstr "Rendszer lapozófájl" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1309,7 +1306,7 @@ msgstr "Bájt elküldve" msgid "Bytes received" msgstr "Fogadott bájtok" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Kapcsolatok" @@ -1348,11 +1345,11 @@ msgstr "%d tábla" msgid "Questions" msgstr "Kérdések" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Forgalom" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Beállítások" @@ -1375,8 +1372,8 @@ msgstr "Legalább egy változót adjon meg a sorozathoz" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Nincs" @@ -1474,7 +1471,7 @@ msgstr "Beállítások megváltoztatása" msgid "Current settings" msgstr "Jelenlegi beállítások" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Diagramcím" @@ -1554,7 +1551,7 @@ msgstr "A kimenet magyarázata" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Idő" @@ -1648,10 +1645,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importálás" @@ -1703,9 +1700,9 @@ msgstr "Használt változó / képlet" msgid "Test" msgstr "Teszt" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Mégse" @@ -1733,9 +1730,9 @@ msgstr "Oszlop törlése" msgid "Adding Primary Key" msgstr "Elsődleges kulcs hozzáadása" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1817,7 +1814,7 @@ msgstr "Törlés" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET szerkesztő" @@ -1858,8 +1855,8 @@ msgstr "SQL-lekérdezési panelek mutatása" msgid "No rows selected" msgstr "Nem jelölte ki a sort" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Módosítás" @@ -1874,7 +1871,7 @@ msgid "%d is not valid row number." msgstr "A(z) %d érvénytelen sorszám." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2380,16 +2377,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "másodpercenként" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "percenként" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "óránként" @@ -2497,8 +2494,8 @@ msgstr "Kulcs szerinti rendezés" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Beállítások" @@ -2555,7 +2552,7 @@ msgid "The row has been deleted" msgstr "A sor törlése megtörtént" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Leállít" @@ -2584,27 +2581,27 @@ msgstr "összesen" msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Diagram megjelenítése" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Nézet létrehozása" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Nem található a hivatkozás" @@ -2681,46 +2678,46 @@ msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." msgid "Javascript must be enabled past this point" msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Nincs meghatározott index!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexek" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Egyedi" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Csomagolt" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Számosság" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Megjegyzés" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Az elsődleges kulcs eldobása megtörtént" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "A(z) %s index eldobása megtörtént" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2729,9 +2726,9 @@ 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/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Adatbázisok" @@ -2741,7 +2738,7 @@ msgstr "Adatbázisok" msgid "Server" msgstr "Kiszolgáló" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2754,102 +2751,102 @@ msgstr "Kiszolgáló" msgid "Structure" msgstr "Szerkezet" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Beszúrás" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Műveletek" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Követés" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Eseményindítók" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Üresnek tűnik a tábla!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Üresnek tűnik az adatbázis!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Lekérdezés" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Jogok" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Eljárások" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Események" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Tervező" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Felhasználók" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Bináris napló" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Változók" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Karakterkészlet" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Bővítmények" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motorok" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Hiba" @@ -2895,74 +2892,74 @@ msgstr "Táblák megszámolása" msgid "There are no recent tables" msgstr "Nincsenek utoljára használt táblák" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Erről a tárolómotorról részletes állapot-információ nem áll rendelkezésre." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "A(z) %s motor elérhető ezen a MySQL szerveren." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s letiltott ezen a MySQL szerveren." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "ismeretlen táblaállapot: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Forrás adatbázis" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Nem található a(z) %s téma!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Érvénytelen adatbázis" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Érvénytelen táblanév" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "A(z) %s tábla átnevezése %s névre megtörtént" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2970,22 +2967,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Függvény" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Kezelő" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Érték" @@ -2995,7 +2992,7 @@ msgstr "Érték" msgid "Table Search" msgstr "Keresés" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Szerkesztés/Beszúrás" @@ -3129,14 +3126,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3396,11 +3393,11 @@ msgstr "Üdvözli a %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" -"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A " -"%1$stelepítőszkripttel%2$s el tudja készíteni." +"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1" +"$stelepítőszkripttel%2$s el tudja készíteni." #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3514,12 +3511,12 @@ msgstr "Táblák" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Adatok" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Felülírás" @@ -3632,18 +3629,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-lekérdezés" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3733,7 +3730,7 @@ msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" msgid "Click to toggle" msgstr "Kattintson a kijelöléshez." -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Számítógép tallózása:" @@ -3743,8 +3740,8 @@ msgstr "Számítógép tallózása:" msgid "Select from the web server upload directory %s:" msgstr "Válasszon a szerver feltöltési könyvtárából %s :" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" @@ -3929,7 +3926,7 @@ msgstr "Alapértelmezett érték visszaállítása" msgid "Allow users to customize this value" msgstr "Engedélyezi a felhasználóknak az érték módosítását" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4219,7 +4216,7 @@ msgid "Character set of the file" msgstr "A fájl karakterkészlete" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formátum" @@ -4519,7 +4516,7 @@ msgstr "Navigációs keret" msgid "Customize appearance of the navigation frame" msgstr "A navigációs keret megjelenésének testreszabása" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Szerverek" @@ -5886,7 +5883,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6219,7 +6216,7 @@ msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6227,15 +6224,15 @@ msgstr "" "A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően " "beállítotva)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "A kiszolgáló nem válaszol." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Részletek..." @@ -6292,8 +6289,8 @@ msgstr "Tábla létrehozása" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Név" @@ -6395,8 +6392,8 @@ msgstr ", @TABLE@ lesz a tábla neve" #, 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 "" "Ennek az értéknek az értelmezése a(z) %1$sstrftime%2$s használatával " "történik, vagyis időformázó karakterláncokat használhat. Továbbá a következő " @@ -6408,7 +6405,7 @@ msgid "use this for future exports" msgstr "használja ezt a későbbi exportálásokhoz" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "A fájl karakterkészlete:" @@ -6927,8 +6924,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6990,7 +6987,7 @@ msgstr "Esemény" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7055,7 +7052,7 @@ msgstr "MIME-típusok megjelenítése" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Hoszt" @@ -7278,8 +7275,8 @@ msgstr "Tartalom exportálása" msgid "No data found for GIS visualization." msgstr "Nem található adat a grafikonhoz" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." @@ -7449,77 +7446,77 @@ msgstr "SQL kompatibilitási mód:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne használja az AUTO_INCREMENT-et nulla értékekhez" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Elrejtés" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Bináris" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "A hossza miatt ez az
    oszlop talán nem szerkeszthető" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Bináris - nem szerkeszthető" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "webszerver feltöltési könyvtár" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Beszúrás folytatása a(z) %s sorokkal" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "és utána" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Új sor beillesztése és a hibák figyelmen kívül hagyása" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Beillesztő lekérdezés megjelenítése" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, ill. a CTRL+nyilakkal bárhová " "léphet." -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" @@ -7543,7 +7540,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Indítás" @@ -7561,7 +7558,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Valóban a következőt akarja " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Nincs változás" @@ -7815,7 +7812,7 @@ msgstr "" "Kérjük, olvassa el a dokumentációban a column_comments tábla frissítéséről " "szóló fejezetet" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Könyvjelzőkhöz hozzáadott SQL-lekérdezés" @@ -7870,6 +7867,10 @@ msgstr "" msgid "no description" msgstr "nincs leírás" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Kijelölés törlése" + #: libraries/replication_gui.lib.php:54 #, fuzzy msgid "Slave configuration" @@ -7906,8 +7907,8 @@ msgstr "Mester állapot" msgid "Slave status" msgstr "Másodlagos állapot" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Változó" @@ -7932,7 +7933,7 @@ msgstr "Bármilyen felhasználó" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Szöveges mező használata" @@ -7965,10 +7966,10 @@ msgid "Generate Password" msgstr "Jelszó generálása" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7979,7 +7980,7 @@ msgstr "A következő lekérdezés meghiúsult: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Elnézést, nem sikerült visszaállítani az eldobott eseményt." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7994,7 +7995,7 @@ msgstr "A(z) %1$s esemény módosult." msgid "Event %1$s has been created." msgstr "A(z) %1$s esemény létrejött." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "Egy vagy több hiba történt a kérés feldolgozása közben:" @@ -8003,14 +8004,14 @@ msgstr "Egy vagy több hiba történt a kérés feldolgozása közben:" msgid "Edit event" msgstr "Esemény módosítása" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Hiba a kérés feldolgozásában" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Részletek" @@ -8023,7 +8024,7 @@ msgstr "Eseménynév" msgid "Event type" msgstr "Esemény típusa" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Módosítás erre: %s" @@ -8056,13 +8057,13 @@ msgstr "Vége" msgid "On completion preserve" msgstr "teljes beillesztések" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8087,7 +8088,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Új" @@ -8109,7 +8110,7 @@ msgstr "" msgid "Returns" msgstr "Típus visszaadása" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8117,138 +8118,138 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Érvénytelen eljárástípus: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, 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" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, 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." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Eljárás szerkesztése" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Eljárás neve" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Paraméterek" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Közvetlen hivatkozások" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Hossz/Érték*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Paraméter hozzáadása" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Adatbázis eltávolítása" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Típus visszaadása" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Hossz/Érték*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tábla beállításai" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Biztonság" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, 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." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Eljárás paraméterei" @@ -8552,7 +8553,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Ismeretlen nyelv: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Jelenlegi kiszolgáló" @@ -8583,52 +8584,52 @@ msgstr "Cél adatbázis" msgid "Click to select" msgstr "Kattintson a kijelöléshez." -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "A(z) %s szerveren lefuttatandó SQL lekérdezés(ek)" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Törlés" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Oszlopok" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" "A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára " "engedélyezett" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Az ugyanazon nevű könyvjelző kicserélése" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Nem írja felül ezt a lekérdezést az ablakon kívülről" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Elválasztó" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "A fenti lekérdezés megjelenítése itt újra" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Csak megtekinthető" @@ -8702,8 +8703,8 @@ 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-" +"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_common.inc.php:53 @@ -8734,7 +8735,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Index" @@ -8787,12 +8788,12 @@ msgid "As defined:" msgstr "Mint meghatározva:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Elsődleges" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Teljes szöveg" @@ -8806,12 +8807,12 @@ msgstr "" msgid "after %s" msgstr "%s után" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "%s oszlop hozzáadása" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Legalább egy oszlopot kell hozzáadnia." @@ -8869,7 +8870,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "A kép letöltésére mutató hivatkozást jelenít meg." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9051,8 +9052,8 @@ msgid "Protocol version" msgstr "Protokoll verzió" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Felhasználó" @@ -9198,17 +9199,17 @@ msgstr "" "A szerver Suhosinnal fut. Kérjük, hogy a lehetséges problémáknak nézzen " "utána a %sdokumentációban%s." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Nincs adatbázis" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Tábla rendezésének módosítása e szerint:" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9231,7 +9232,7 @@ msgstr "Bal oldali menü megjelenítése/elrejtése" msgid "Save position" msgstr "Pozíció mentése" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Kapcsolat létrehozása" @@ -9293,41 +9294,41 @@ msgstr "A kapcsolat nélküli táblák megjelenítése/elrejtése" msgid "Number of tables" msgstr "Táblák száma" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Kapcsolat törlése" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Kapcsolat operátor" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Exportálás" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "allekérdezés" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Nézet átnevezése" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Új név" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Összegzés" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9447,8 +9448,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"További beállításokat állíthat be a config.inc.php modosításával, pl. " -"%sBeállító parancsfájl%s használatával." +"További beállításokat állíthat be a config.inc.php modosításával, pl. %" +"sBeállító parancsfájl%s használatával." #: prefs_manage.php:305 msgid "Save to browser's storage" @@ -9494,13 +9495,13 @@ msgstr "Válassza ki a megtekintendő bináris naplót" msgid "Files" msgstr "Fájlok" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "A megjelenített lekérdezések lerövidítése" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" @@ -9516,7 +9517,7 @@ msgstr "Pozíció" msgid "Original position" msgstr "Eredeti pozíció" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Információ" @@ -9545,11 +9546,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Statisztika engedélyezése" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9805,7 +9806,7 @@ msgid "None" msgstr "Nincs" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" @@ -9822,7 +9823,7 @@ msgstr "Adminisztráció" msgid "Global privileges" msgstr "Globális jogok" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" @@ -9843,7 +9844,7 @@ msgstr "Bejelentkezési adatok" msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Nem található felhasználó." @@ -9892,7 +9893,7 @@ msgstr "A kiválasztott felhasználók törlése sikerült." msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Jogok szerkesztése" @@ -9907,7 +9908,7 @@ msgid "Export all" msgstr "Exportálás" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Bármi" @@ -9927,122 +9928,122 @@ msgstr "Jogok" msgid "Users overview" msgstr "Felhasználók áttekintése" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Engedélyezés" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "A kijelölt felhasználók törlése" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "A felhasználók összes jogának visszavonása, majd törlése." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Oszlopspecifikus jogok" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Jogok hozzáadása a következő adatbázison" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "A _ és a % karakterhelyettesítőt \\ jellel kell lezárni, hogy " "szövegkonstansként lehessen őket használni" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Jogok hozzáadása a következő táblán:" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... a régiek megőrzése." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... a régiek törlése a felhasználói táblákból." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... az összes aktív jog visszaállítása a régiekből, majd törlés." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "... a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Adatbázis a felhasználó számára" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globális" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "adatbázis-specifikus" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "karakterhelyettesítő" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "A felhasználó hozzáadása kész." @@ -10321,43 +10322,43 @@ msgstr "Csak a figyelmeztető értékek megjelenítése" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Formázatlan értékek megjelenítése" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Kapcsolódó hivatkozások:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Elemző futtatása" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Utasítások" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10365,46 +10366,46 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "A kezdőlap testreszabása" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Utasítások" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ez a MySQL szerver %1$s óta fut. Indítás időpontja: %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10412,11 +10413,11 @@ msgstr "" "A szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Többszörözéses állapot" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10424,47 +10425,47 @@ msgstr "" "Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által " "jelentett statisztikák pontatlanok lehetnek." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Fogadott" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Küldött" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Max. egyidejű kapcsolatok száma" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Sikertelen próbák" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Megszakítva" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "AZ" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Parancs" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10474,17 +10475,17 @@ msgstr "" "használt, azonban az túllépte a binlog_cache_size méretet, és ideiglenes " "fájlt használt az utasítások tárolásához a tranzakcióból." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Az ideiglenes bináris naplógyorsítótár által használt tranzakciók száma." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10496,11 +10497,11 @@ msgstr "" "nagy, akkor növelheti a tmp_table_size értékét, mely az ideiglenes táblákból " "memóriaalapúakat csinál a lemezalapú helyett." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10508,7 +10509,7 @@ msgstr "" "A szerver által az utasítások végrehajtásakor automatikusan létrehozott, a " "memóriában tárolt ideiglenes táblák száma." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10516,7 +10517,7 @@ msgstr "" "Az INSERT DELAYED utasítással írt sorok száma, melyeknél néhány hiba történt " "(valószínűleg ismétlődő kulcs)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10524,23 +10525,23 @@ msgstr "" "A használatban lévő INSERT DELAYED kezelőszálak száma. Minden eltérő " "táblának, melyen valaki INSERT DELAYED parancsot használ, saját szála lesz." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Egy sornak a táblázatból történő törléseinek a száma." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10550,7 +10551,7 @@ msgstr "" "megadott nevű táblát. Ezt hívják felfedezésnek. A handler_discover jelzi a " "táblák felfedezésének számát." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10561,7 +10562,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10569,7 +10570,7 @@ msgstr "" "Egy sor kulcs alapján történő beolvasási kéréseinek száma. Ha ez magas, " "akkor jól mutatja, hogy a lekérdezések és a táblák megfelelően indexeltek." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10579,7 +10580,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10587,7 +10588,7 @@ msgstr "" "A kulcssorrendben előző sort beolvasandó kérések száma. Ezt a beolvasási " "módszert főleg az ORDER BY ... DESC optimalizálásához használják." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10599,7 +10600,7 @@ msgstr "" "Valószínűleg sok olyan lekérdezés van, s a MySQL-nek teljes táblákat kell " "megvizsgálnia, vagy a kulcsokat nem megfelelően használó illesztések vannak." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10611,35 +10612,35 @@ msgstr "" "hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva " "az indexek kihasználása végett." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "A kérések száma egy táblában lévő sor frissítéséhez." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "A kérések száma egy táblában lévő sor beszúrásához." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "A pufferkészlet oldalainak száma, melyeket kiírásra kértek." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10649,7 +10650,7 @@ msgstr "" "írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni " "vagy eltávolítani." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10662,11 +10663,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is " "számolható." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10675,7 +10676,7 @@ msgstr "" "akkor történik, ha egy lekérdezés meg akarja vizsgálni egy tábla nagy " "részét, viszont véletlenszerű sorrendben." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10683,11 +10684,11 @@ msgstr "" "Az InnoDB által kezdeményezett sorozatos előreolvasások száma. Ez akkor " "történik, mikor az InnoDB sorozatos teljes táblavizsgálatot tart." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Az InnoDB által elvégzett logikai olvasási kérések száma." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10695,7 +10696,7 @@ msgstr "" "A logikai olvasások száma, melyeket az InnoDB nem tudott a pufferkészletből " "kielégíteni, s egyoldalas beolvasást végzett." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10710,53 +10711,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Az InnoDB pufferkészletébe történt írások száma." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10764,35 +10765,35 @@ msgstr "" "Várakozások száma, amiket a naplópuffer kis mérete okozott és folytatás " "előtt meg kellett várni a kiírást." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "A naplófájlba történt fizikai írások száma." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsync() írások száma." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10801,51 +10802,51 @@ msgstr "" "került számolásra az oldalakban; az oldal mérete teszi lehetővé a bájtokká " "történő könnyű átalakítást." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "A jelenleg várakozás alatt lévő sorzárolások száma." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges átlag időtartam, milliszekundumban." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő, milliszekundumban." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges időtartam, milliszekundumban." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "A sorzárolásra váráshoz szükséges alkalmak száma." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Az InnoDB táblákból törölt sorok száma." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10853,7 +10854,7 @@ msgstr "" "A kulcsgyorsítótárban lévő kulcsblokkok száma, melyek megváltoztak, de még " "nem kerültek lemezre kiírásra. Ez Not_flushed_key_blocks néven ismert." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10861,7 +10862,7 @@ msgstr "" "A kulcsgyorsítótárban lévő, nem használt blokkok száma. Ezzel az értékkel " "állapíthatja meg, hogy mennyire van használatban a kulcsgyorsítótár." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10870,17 +10871,17 @@ msgstr "" "A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális " "jel, mely a valamikor használatban volt blokkok számát jelzi." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Az importált fájl formátuma" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "A gyorsítótárból egy kulcsblokk beolvasásához szükséges kérések száma." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10891,26 +10892,26 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "A kérések száma egy kulcsblokk gyorsítótárba történő írásához." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Egy kulcsblokk lemezre történő fizikai írásainak száma." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10921,17 +10922,17 @@ msgstr "" "költségének lekérdezéséhez hasznos. Az alapértelmezett 0 érték azt jelenti, " "hogy lekérdezés lefordítására még nem került sor." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Az INSERT DELAYED sorokban írásra várakozó sorok száma." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10939,40 +10940,40 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagyok, akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Az adatfolyamok száma, melyek nyitottak (főleg a naplózáshoz kerül " "felhasználásra)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10985,7 +10986,7 @@ msgstr "" "lekérdezési gyorsítótár a legrégebben használt (LRU) stratégiával dönti el, " "hogy mely lekérdezéseket kell eltávolítani a gyorsítótárból." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10993,19 +10994,19 @@ msgstr "" "A nem gyorsítótárazott lekérdezések száma (nem gyorsítótárazható, vagy nem " "gyorsítótárazott a query_cache_type beállítás miatt)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "A blokkok száma a lekérdezési gyorsítótárban." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "A hibabiztos többszörözések állapota (megvalósításra vár)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11013,11 +11014,11 @@ msgstr "" "Az indexeket nem használó illesztések száma. Ha ez az érték nem 0, akkor " "ellenőrizze körültekintően a táblák indexeit." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Egy hivatkozási táblán tartománykeresést használt illesztések száma." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11026,7 +11027,7 @@ msgstr "" "használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a " "táblák indexeit.))" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11034,15 +11035,15 @@ msgstr "" "Az első táblán tartományokat használt illesztések száma. (Normál esetben ez " "nem súlyos, még ha túl nagy is ez.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Az első tábla teljes vizsgálatát elvégzett illesztések száma." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "A kisegítő SQL szál által épp megnyitott ideiglenes táblák száma." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11050,11 +11051,11 @@ msgstr "" "A többszörözésben kisegítő SQL szál (az indítás óta) ennyiszer próbálta újra " "a tranzakciókat." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ez BE, ha ez főszerverhez csatlakoztatott kisegítő szerver." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11062,14 +11063,14 @@ msgstr "" "A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre " "volt szükség." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "A lekérdezések száma, melyekhez long_query_time másodpercnél többre volt " "szükség." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11079,23 +11080,23 @@ msgstr "" "végeznie. Ha ez az érték nagy, akkor gondolja meg a sort_buffer_size " "rendszerváltozó értékének növelését." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "A tábla vizsgálatával végrehajtott rendezések száma." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11107,7 +11108,7 @@ msgstr "" "optimalizálja a lekérdezéseket, majd vagy ossza fel a táblát vagy táblákat, " "vagy használja a többszörözést." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11117,11 +11118,11 @@ msgstr "" "Threads_created/Connections alapján számítható ki. Ha ez az érték piros, " "akkor növelnie kell a thread_cache_size méretét." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11132,66 +11133,66 @@ msgstr "" "nagy, akkor növelheti a thread_cache_size értékét. (Normál esetben ez nem " "növeli jelentősen a teljesítményt, ha jó szálmegvalósítása van.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Nyomkövetés inaktív." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Indítás" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Diagram hozzáadása" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Frissítési időköz" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Diagram oszlopai" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Visszaállítás az alapértékre" -#: server_status.php:1631 +#: server_status.php:1640 #, fuzzy msgid "Monitor Instructions" msgstr "Információ" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11200,7 +11201,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11208,18 +11209,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11227,11 +11228,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11239,100 +11240,100 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Adatbázis eltávolítása" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Táblák kiválasztása" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Érvénytelen táblanév" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Új szerver hozzáadása" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL-lekérdezések" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Naplóstatisztikák" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Táblák kiválasztása" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Lekérdezés típusa" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d másodperc" msgstr[1] "%d másodperc" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -12157,35 +12158,35 @@ msgstr "Hivatkozási sértetlenség ellenőrzése:" msgid "Showing tables" msgstr "Táblák megjelenítése" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Területhasználat" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Hatásos" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Sorstatisztika" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statikus" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamikus" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Sor hossza" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Sor mérete" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12211,7 +12212,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Idegen kulcs megszorítás" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12263,51 +12264,51 @@ msgstr "Az index hozzáadása a(z) %s mezőn megtörtént" msgid "Show more actions" msgstr "Több tevékenység mutatása" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Oszlop(ok) eltávolítása" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Nézet szerkesztése" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Kapcsolat nézete" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Táblaszerkezet ajánlása" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Oszlop hozzáadása" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "A tábla végén" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "A tábla elején" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s után" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Index készítése a(z)  %s oszlopokon" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "particionált" @@ -12817,8 +12818,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12949,8 +12950,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13960,8 +13961,8 @@ msgstr "Max. egyidejű kapcsolatok száma" #~ "No themes support; please check your configuration and/or your themes in " #~ "directory %s." #~ msgstr "" -#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) " -#~ "%s könyvtárban." +#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) %" +#~ "s könyvtárban." #~ msgid "Switch to" #~ msgstr "Váltás" diff --git a/po/hy.po b/po/hy.po index b731e5912d..a0813a1fd4 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-18 16:41+0200\n" "Last-Translator: Hamlet Muradyan \n" "Language-Team: none\n" -"Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Որոնում" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Ինդեքսի անվանումը" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Նկարագրություն" @@ -118,13 +119,13 @@ msgstr "Տվյալների բազայի մեկնաբանությունը՝ " msgid "Table comments" msgstr "Աղյուսակի մեկնաբանությունը" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Աղյուսակի մեկնաբանությունը" msgid "Column" msgstr "Սյուն" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Տեսակ" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Կապեր" msgid "Comments" msgstr "Մեկնաբանություններ" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Մեկնաբանություններ" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ոչ" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Ոչ" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Ցուցադրել տվյալների բազայի dump-ը (սխեման msgid "No tables found in database." msgstr "Տվյալների բազայում աղյուսակներ չկան։" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Նշել բոլորը" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Հանել նշումը" @@ -322,12 +323,12 @@ msgstr "Ավելացնել սահմանափակում" msgid "Switch to copied database" msgstr "Անցնել պատճենված տվյալների բազային" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Համեմատումը" @@ -348,17 +349,17 @@ msgstr "" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Աղյուսակ" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Տողեր" @@ -373,21 +374,21 @@ msgstr "օգտագործվում է" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Ստեղծում" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Վերջին թարմացումը" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Վերջին ստուգումը" @@ -449,7 +450,7 @@ msgid "Del" msgstr "Հեռացնել" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Կամ" @@ -490,84 +491,83 @@ msgstr "Կատարել հարցումը" msgid "Access denied" msgstr "" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "բառերից ցանկանցածը" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "բոլոր բառերը" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "ճիշտ համընկնում" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "կանոնավոր արտահայտություն" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "«%s» որոնման արդյունքները %s՝" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "" -msgstr[1] "" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Թերթել" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Հեռացնել" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Ընդհանուր՝ %s համընկնում" -#: db_search.php:292 +#: db_search.php:296 +#, php-format +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Թերթել" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Հեռացնել" + +#: db_search.php:362 msgid "Search in database" msgstr "Որոնումը տվյալների բազայում" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Գտնել՝" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Բառերն առանձնացվում են (« »)։" -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Աղյուսակներ՝" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Սյուներ՝" @@ -606,8 +606,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -615,7 +615,7 @@ msgstr "" msgid "View" msgstr "Ներկայացում" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -625,93 +625,89 @@ msgstr "Վերարադրում" msgid "Sum" msgstr "Ընդամենը" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Նշվածները՝" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Նշել բոլորը" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Հանել նշումը" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Արտահանում" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Դատարկել" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Հեռացնել" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Ստուգել աղյուսակը" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Օպտիմիզացնել աղյուսակը" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Վերականգնել աղյուսակը" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Վերլուծել աղյուսակը" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Տվյալների բառարան" @@ -724,9 +720,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Տվյալների բազա" @@ -743,17 +739,17 @@ msgstr "Ստեղծված է" msgid "Updated" msgstr "Թարմացված է" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Վիճակը" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Գործողություն" @@ -785,7 +781,7 @@ msgstr "Կառուցվածքի պատկերը" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "" @@ -918,8 +914,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -982,13 +978,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "" @@ -1072,8 +1068,8 @@ msgstr "" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "" @@ -1091,7 +1087,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1118,13 +1114,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1154,7 +1150,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1214,13 +1210,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "" @@ -1272,7 +1268,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1311,11 +1307,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "" @@ -1338,8 +1334,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "" @@ -1432,7 +1428,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "" @@ -1510,7 +1506,7 @@ msgstr "" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "" @@ -1598,10 +1594,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1649,9 +1645,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1679,9 +1675,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "" @@ -1757,7 +1753,7 @@ msgstr "" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1796,8 +1792,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "" @@ -1812,7 +1808,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2301,16 +2297,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2409,8 +2405,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2463,7 +2459,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2490,27 +2486,27 @@ msgstr "" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2579,55 +2575,55 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "" @@ -2637,7 +2633,7 @@ msgstr "" msgid "Server" msgstr "" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2650,102 +2646,102 @@ msgstr "" msgid "Structure" msgstr "" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2787,70 +2783,70 @@ msgstr "" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2858,22 +2854,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -2881,7 +2877,7 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "" @@ -3007,14 +3003,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3264,8 +3260,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3372,12 +3368,12 @@ msgstr "" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "" @@ -3484,18 +3480,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3583,7 +3579,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3593,8 +3589,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -3778,7 +3774,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4043,7 +4039,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "" @@ -4339,7 +4335,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5542,7 +5538,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "" @@ -5848,21 +5844,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -5917,8 +5913,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6018,8 +6014,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:285 @@ -6027,7 +6023,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6486,8 +6482,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6547,7 +6543,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6608,7 +6604,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -6802,8 +6798,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6965,75 +6961,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7057,7 +7053,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7073,7 +7069,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7323,7 +7319,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7370,6 +7366,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Հանել նշումը" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7404,8 +7404,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7430,7 +7430,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7461,10 +7461,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7475,7 +7475,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7490,7 +7490,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7499,14 +7499,14 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7519,7 +7519,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "" @@ -7546,13 +7546,13 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7577,7 +7577,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7597,7 +7597,7 @@ msgstr "" msgid "Returns" msgstr "" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7605,125 +7605,125 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8004,7 +8004,7 @@ msgstr "" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8035,50 +8035,50 @@ msgstr "" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8161,7 +8161,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8206,12 +8206,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8224,12 +8224,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "" @@ -8274,7 +8274,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8412,8 +8412,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -8521,15 +8521,15 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "" @@ -8550,7 +8550,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -8610,37 +8610,37 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "" @@ -8800,13 +8800,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -8822,7 +8822,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -8850,11 +8850,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9092,7 +9092,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9109,7 +9109,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9129,7 +9129,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9178,7 +9178,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9191,7 +9191,7 @@ msgid "Export all" msgstr "" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9208,115 +9208,115 @@ msgstr "" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "" @@ -9583,43 +9583,43 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9627,115 +9627,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9743,78 +9743,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9822,7 +9822,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9830,42 +9830,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9873,33 +9873,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9908,242 +9908,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10151,99 +10151,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10251,18 +10251,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10270,61 +10270,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10333,7 +10333,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10341,18 +10341,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10360,11 +10360,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10372,86 +10372,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11171,35 +11171,35 @@ msgstr "" msgid "Showing tables" msgstr "" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11222,7 +11222,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11272,49 +11272,49 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -11797,8 +11797,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -11916,8 +11916,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/id.po b/po/id.po index 30fef55517..baafc61ba9 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-03-27 16:57+0200\n" "Last-Translator: Michal Čihař \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: Weblate 0.8\n" "X-Poedit-Basepath: ../../..\n" @@ -39,53 +39,54 @@ msgstr "" "menutup jendela induk atau pilihan keamanan pada peramban Anda mencekal " "pembaruan lintas-jendela" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Cari" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Kirim" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nama kunci" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Deskripsi" @@ -118,13 +119,13 @@ msgstr "Komentar basis data: " msgid "Table comments" msgstr "Komentar tabel" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Komentar tabel" msgid "Column" msgstr "Kolom" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Jenis" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Tautan ke" msgid "Comments" msgstr "Komentar" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Komentar" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Tidak" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Tidak" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Tampilkan dump (skema) basis data" msgid "No tables found in database." msgstr "Tidak ada tabel dalam basis data." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Pilih Semua" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Lepas Semua" @@ -325,12 +326,12 @@ msgstr "Tambahkan batasan" msgid "Switch to copied database" msgstr "Pindah ke basis data hasil penyalinan" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Penyortiran" @@ -353,17 +354,17 @@ msgstr "Edit atau ekspor skema relasional" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Baris" @@ -378,21 +379,21 @@ msgstr "sedang digunakan" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Pembuatan" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Pembaruan terakhir" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Pemeriksaan terakhir" @@ -454,7 +455,7 @@ msgid "Del" msgstr "Hapus" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Atau" @@ -495,85 +496,85 @@ msgstr "Kirim Kueri" msgid "Access denied" msgstr "Akses ditolak" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "paling tidak satu kata" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "semua kata" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "frasa tepat" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "persamaan reguler" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil pencarian untuk \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s cocok dalam tabel %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Jelajahi" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Hapus yang cocok untuk %s tabel?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Hapus" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s cocok" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s cocok dalam tabel %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Jelajahi" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Hapus yang cocok untuk %s tabel?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Hapus" + +#: db_search.php:362 msgid "Search in database" msgstr "Cari dalam basis data" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Kata atau hasil untuk dicari (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Cari:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Kata dipisahkan oleh karakter spasi (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Dalam tabel:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Dalam kolom:" @@ -612,18 +613,18 @@ msgstr "Pelacakan tidak aktif." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat " -"%sdokumentasi%s" +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat %" +"sdokumentasi%s" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Gambarkan" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -633,94 +634,90 @@ msgstr "Replikasi" msgid "Sum" msgstr "Jumlah" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah mesin penyimpanan utama pada server MySQL ini." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Pilih Semua" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Lepas Semua" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Pilih tabel berbeban tambahan" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspor" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Tampilan cetak" # Imperative menu -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Kosongkan" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Hapus" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Periksa tabel" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimalkan tabel" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Perbaiki tabel" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analisis tabel" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Tambahkan prefiks untuk tabel" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Ganti prefiks tabel" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Salin tabel dengan prefiks" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Kamus Data" @@ -733,9 +730,9 @@ msgstr "Tabel yang dilacak" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Basis data" @@ -752,17 +749,17 @@ msgstr "Dibuat" msgid "Updated" msgstr "Diperbarui" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Tindakan" @@ -794,7 +791,7 @@ msgstr "Snapshot struktur" msgid "Untracked tables" msgstr "Tabel yang tidak dilacak" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Lacak tabel" @@ -931,11 +928,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Harap lihat " -"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Harap lihat %" +"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1009,13 +1006,13 @@ msgstr "" "waktu eksekusi php." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Kueri SQL Anda berhasil dieksekusi" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Kembali" @@ -1102,8 +1099,8 @@ msgstr "Kata sandi kosong!" msgid "The passwords aren't the same!" msgstr "Kata sandi tidak sama!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Tambahkan pengguna" @@ -1121,7 +1118,7 @@ msgid "Close" msgstr "Tutup" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1148,13 +1145,13 @@ msgstr "Data statis" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Lainnya" @@ -1184,7 +1181,7 @@ msgstr "Lalu lintas server (dalam KB)" msgid "Connections since last refresh" msgstr "Koneksi sejak dibuka terakhir" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Proses Aktif" @@ -1248,13 +1245,13 @@ msgstr "Swap sistem" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1306,7 +1303,7 @@ msgstr "Bita dikirim" msgid "Bytes received" msgstr "Bita diterima" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Koneksi" @@ -1345,11 +1342,11 @@ msgstr "%d tabel" msgid "Questions" msgstr "Perintah" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Lalu Lintas" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Pengaturan" @@ -1372,8 +1369,8 @@ msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Tidak ada" @@ -1473,7 +1470,7 @@ msgstr "Ubah pengaturan" msgid "Current settings" msgstr "Pengaturan saat ini" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Judul Bagan" @@ -1561,7 +1558,7 @@ msgstr "Jelaskan hasil" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Waktu" @@ -1658,10 +1655,10 @@ msgstr "" "Gagal membangun Grafik kisi dengan mengimport config. Mengembalikan ke " "Setelan baku..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impor" @@ -1713,9 +1710,9 @@ msgstr "Variabel / formula terpakai" msgid "Test" msgstr "Uji" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Batal" @@ -1743,9 +1740,9 @@ msgstr "Menghapus Kolom" msgid "Adding Primary Key" msgstr "Menambahkan Kunci Primer" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Oke" @@ -1827,7 +1824,7 @@ msgstr "Menghapus" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definisi fungsi disimpan harus mengandung pernyataan RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" @@ -1868,8 +1865,8 @@ msgstr "Tampilkan kotak kueri" msgid "No rows selected" msgstr "Tidak ada baris yang dipilih" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Ubah" @@ -1884,7 +1881,7 @@ msgid "%d is not valid row number." msgstr "%d bukanlah nomor baris yang berlaku." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2396,16 +2393,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "per detik" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "per menit" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "dalam sejam" @@ -2506,8 +2503,8 @@ msgstr "Urut berdasarkan kunci" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opsi" @@ -2562,7 +2559,7 @@ msgid "The row has been deleted" msgstr "Baris telah dihapus" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Tutup" @@ -2591,27 +2588,27 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "Pencarian dilakukan dalam %01.4f detik" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operasi hasil kueri" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Tampilan cetak (teks lengkap)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Tampilkan bagan" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Buat tampilan" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Tautan tidak ditemukan" @@ -2686,46 +2683,46 @@ msgstr "Mulai dari sini cookies harus diaktifkan." msgid "Javascript must be enabled past this point" msgstr "Mulai dari sini cookies harus diaktifkan." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Indeks belum ditentukan!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Dipadatkan" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalitas" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Kunci primer telah dihapus" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s telah dihapus" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2734,9 +2731,9 @@ msgstr "" "Indeks %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan " "untuk dibuang." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Basis data" @@ -2746,7 +2743,7 @@ msgstr "Basis data" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2759,102 +2756,102 @@ msgstr "Server" msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Tambahkan" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Pelacakan" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Trigger" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tampaknya tabel kosong!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Basis data kelihatannya kosong!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Kueri" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Hak Akses" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routine" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Event" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Desainer" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Pengguna" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sinkronisasi" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log biner" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variabel" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Set Karakter" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plugin" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Mesin" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Galat" @@ -2899,66 +2896,66 @@ msgstr "Tabel terakhir" msgid "There are no recent tables" msgstr "Tidak ada tabel terakhir" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Informasi status detail mesin penyimpanan ini tidak tersedia." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s siap untuk digunakan pada server MySQL ini." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s didinonaktifkan untuk server MySQL ini." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Server MySQL ini tidak mendukung mesin penyimpanan %s." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "status tabel tidak diketahui:" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Basis data sumber" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s tidak ditemukan!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Basis data tidak valid" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Nama tabel tidak valid" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Galat sewaktu mengganti nama table %1$s menjadi %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Nama tabel %s telah diubah menjadi %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Tidak dapat menyimpan preferensi UI tabel" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2967,7 +2964,7 @@ msgstr "" "Gagal membersihkan tabel UI preferences (lihat $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2978,22 +2975,22 @@ msgstr "" "terus-menerus setelah Anda me-refresh halaman ini. Silakan periksa jika " "struktur tabel telah berubah." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Fungsi" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Nilai" @@ -3001,7 +2998,7 @@ msgstr "Nilai" msgid "Table Search" msgstr "Pencarian Tabel" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Edit/Tambah" @@ -3131,14 +3128,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3398,11 +3395,11 @@ msgstr "Selamat Datang di %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" -"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan " -"%1$ssetup script%2$s untuk membuatnya." +"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan %1" +"$ssetup script%2$s untuk membuatnya." #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3515,12 +3512,12 @@ msgstr "Tabel" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Beban" @@ -3636,18 +3633,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Pencarian SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3735,7 +3732,7 @@ msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" msgid "Click to toggle" msgstr "Klik untuk beralih" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" @@ -3745,8 +3742,8 @@ msgstr "Telusuri komputer Anda:" msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi" @@ -3932,7 +3929,7 @@ msgstr "Kembalikan nilai bawaan" msgid "Allow users to customize this value" msgstr "Izinkan pengguna untuk mengubah nilai ini" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4217,7 +4214,7 @@ msgid "Character set of the file" msgstr "Set karakter berkas" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4513,7 +4510,7 @@ msgstr "Bingkai navigasi" msgid "Customize appearance of the navigation frame" msgstr "Atur tampilan bingkai navigasi" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Server" @@ -5747,7 +5744,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6057,7 +6054,7 @@ msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6065,15 +6062,15 @@ msgstr "" "Server tidak merespons (atau soket server lokal tidak dikonfigurasi dengan " "benar)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Server tidak merespons." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Harap periksa hak akses direktori basis data." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Rincian..." @@ -6129,8 +6126,8 @@ msgstr "Buat tabel" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nama" @@ -6230,8 +6227,8 @@ msgstr ", @TABLE@ akan menjadi nama tabel" #, 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:285 @@ -6239,7 +6236,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Set karakter berkas:" @@ -6728,8 +6725,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6789,7 +6786,7 @@ msgstr "Event" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definisi" @@ -6850,7 +6847,7 @@ msgstr "Tampilkan jenis MIME" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Inang" @@ -7048,8 +7045,8 @@ msgstr "Ekspor isi" msgid "No data found for GIS visualization." msgstr "Data untuk visualisasi GIS tidak ditemukan." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memberikan hasil kosong (atau nol baris)." @@ -7216,77 +7213,77 @@ msgstr "Modus kompatibilitas SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Sembunyikan" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Biner" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Karena panjangnya,
    isian ini mungkin tidak dapat diedit" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Biner - jangan diedit" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "direktori unggahan server web" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Lanjutkan penambahan untuk %s baris" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "selanjutnya" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Tambahkan sebagai baris baru" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Tambahkan sebagai baris baru dan abaikan galat" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Tampilkan kueri penambahan" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "kembali" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "tambahkan baris baru berikutnya" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Edit baris berikut" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" @@ -7310,7 +7307,7 @@ msgid "To" msgstr "Menjadi" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Kirim" @@ -7328,7 +7325,7 @@ msgstr "Tambahkan prefiks" msgid "Do you really want to execute the following query?" msgstr "Benarkah Anda ingin untuk " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Tidak ada perubahan" @@ -7582,7 +7579,7 @@ msgstr "" "Harap pelajari dokumentasi tentang cara memperbarui tabel column_comments " "Anda" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Kueri SQL yang dimarkahi" @@ -7629,6 +7626,10 @@ msgstr "" msgid "no description" msgstr "tidak ada deskripsi" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Lepas Semua" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Konfigurasi slave" @@ -7663,8 +7664,8 @@ msgstr "Status master" msgid "Slave status" msgstr "Status slave" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variabel" @@ -7689,7 +7690,7 @@ msgstr "Setiap pengguna" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Gunakan text field" @@ -7720,10 +7721,10 @@ msgid "Generate Password" msgstr "Menghasilkan kata sandi" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7734,7 +7735,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "Maaf, kami gagal memulihkan event yang dihapus." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7749,7 +7750,7 @@ msgstr "Event %1$s telah diubah." msgid "Event %1$s has been created." msgstr "Event %1$s telah dibuat." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7758,14 +7759,14 @@ msgstr "" msgid "Edit event" msgstr "Edit event" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Galat sewaktu memproses permintaan." -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detail" @@ -7778,7 +7779,7 @@ msgstr "Nama event" msgid "Event type" msgstr "Jenis event" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Ubah menjadi %s" @@ -7805,13 +7806,13 @@ msgstr "Selesai" msgid "On completion preserve" msgstr "Sewaktu selesai pertahankan" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7836,7 +7837,7 @@ msgstr "Anda harus memasukkan jenis yang valid untuk event." msgid "You must provide an event definition." msgstr "Anda harus memasukkan definisi event." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Baru" @@ -7856,7 +7857,7 @@ msgstr "Status penjadwal event" msgid "Returns" msgstr "Hasil" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7864,89 +7865,89 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Jenis routine invalid: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Maaf, kami gagal memulihkan routine yang dihapus." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Routine %1$s telah diubah." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Routine %1$s telah dibuat." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Edit routine" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Nama routine" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parameter" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Arah" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Panjang/Nilai" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Tambahkan parameter" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Hapus parameter terakhir" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Jenis hasil" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Panjang/nilai hasil" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Opsi hasil" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Deterministik" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Jenis keamanan" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Akses data SQL" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Anda harus memasukkan nama routine" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7954,36 +7955,36 @@ msgstr "" "Anda harus memasukkan panjang/nilai untuk parameter routine bagi jenis ENUM, " "SET, VARCHAR, dan VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Anda harus memasukkan nama dan jenis setiap parameter routine." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Anda harus memasukkan jenis hasil yang valid untuk routine." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Anda harus memasukkan definisi routine." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Hasil eksekusi routine %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Jalankan routine" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Parameter routine" @@ -8268,7 +8269,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Bahasa tidak dikenal: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Server Saat Ini" @@ -8299,50 +8300,50 @@ msgstr "Basis data target" msgid "Click to select" msgstr "Klik untuk memilih" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Jalankan perintah SQL pada basis data %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Jalankan perintah SQL pada basis data %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Bersihkan" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Kolom" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Markahi kueri SQL ini" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses markah ini" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Ganti markah bernama sama yang ada" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Jangan timpahkan pencarian ini dari jendela luar" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Pembatas" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Tampilkan ulang perintah SQL " -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Hanya melihat" @@ -8445,7 +8446,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -8498,12 +8499,12 @@ msgid "As defined:" msgstr "Seperti yang didefinisikan" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Kunci Utama" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Teks penuh" @@ -8517,12 +8518,12 @@ msgstr "" msgid "after %s" msgstr "Setelah %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Tambahkan %s kolom" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Anda perlu menambahkan paling tidak satu kolom." @@ -8577,7 +8578,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Tampilkan tautan untuk mengunduh gambar ini." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8738,8 +8739,8 @@ msgid "Protocol version" msgstr "Versi protokol" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Pengguna" @@ -8866,17 +8867,17 @@ msgstr "" "Server berjalan dengan Suhosin. Harap rujuk %sdokumentasi%s untuk " "kemungkinan masalah." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Basis data tidak ditemukan" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filter tabel menurut nama" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filter tabel menurut nama" @@ -8897,7 +8898,7 @@ msgstr "Tampilkan/Sembunyikan menu kiri." msgid "Save position" msgstr "Simpan posisi" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Buat relasi" @@ -8959,37 +8960,37 @@ msgstr "Tampilkan/Sembunyikan Tabel tanpa relasi" msgid "Number of tables" msgstr "Jumlah tabel" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Hapus relasi" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Operator relasi" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Kecuali" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "subkueri" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Ubah nama menjadi" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nama baru" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Agregasi" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Opsi aktif" @@ -9152,13 +9153,13 @@ msgstr "Pilih log biner untuk ditampilkan" msgid "Files" msgstr "Berkas" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Potongkan pencarian yang ditampilkan" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" @@ -9174,7 +9175,7 @@ msgstr "Posisi" msgid "Original position" msgstr "Posisi aslinya" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informasi" @@ -9202,11 +9203,11 @@ msgstr "Replikasi master" msgid "Slave replication" msgstr "Replikasi slave" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Aktifkan Statistik" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9461,7 +9462,7 @@ msgid "None" msgstr "Tidak ada" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Hak akses khusus tabel" @@ -9478,7 +9479,7 @@ msgstr "Administrasi" msgid "Global privileges" msgstr "Hak akses global" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Hak akses khusus basis data" @@ -9500,7 +9501,7 @@ msgstr "Informasi Masuk" msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Pengguna tidak ditemukan." @@ -9549,7 +9550,7 @@ msgstr "Sukses menghapus pengguna yang dipilih." msgid "The privileges were reloaded successfully." msgstr "Hak akses berhasil dimuat ulang." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Edit Hak Akses" @@ -9564,7 +9565,7 @@ msgid "Export all" msgstr "Ekspor" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Semua" @@ -9585,31 +9586,31 @@ msgid "Users overview" msgstr "Ikhtisar pengguna" # Table column to indicate if the user able to grant a privilege -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Pemberi Izin" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Hapus pengguna yang dipilih" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Hapus basis data yang memiliki nama yang sama dengan pengguna." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " @@ -9617,91 +9618,91 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Hak akses khusus kolom" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Tambahkan hak akses pada basis data berikut" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Wildcard _ dan % sebaiknya diakhiri dengan tanda \\ untuk mengunakannya " "secara harfiah" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Tambahkan hak akses pada tabel berikut" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Ubah Informasi Masuk / Salin Pengguna" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Buat pengguna baru dengan hak akses yang sama dan ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... mempertahankan yang lama." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... hapus yang lama dari User Table." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... cabut seluruh hak yang aktif, kemudian hapuskan yang lama." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" "... hapuskan yang lama dari tabel pengguna, kemudian muat ulang hak akses." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Basis data untuk pengguna" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Buat basis data dengan nama yang sama dan beri semua hak" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Berikan semua hak untuk basis data "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Pengguna memiliki akses ke "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "khusus basis data" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Pengguna %s telah ditambahkan." @@ -9981,43 +9982,43 @@ msgstr "Tampilkan hanya nilai peringatan" msgid "Filter by category..." msgstr "Filter menurut kategori..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Tampilkan nilai tanpa format" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Tautan terkait:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Jalankan penganalisis" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Instruksi" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10025,32 +10026,32 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Perintah sejak awal: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Keterangan" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Lalu lintas jaringan sejak awal: %sw" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "Server MySQL ini telah berjalan selama %1$s. Server ini dijalankan pada %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10058,63 +10059,63 @@ msgstr "" "Server MySQL ini berfungsi sebagai master dan slave dalam " "proses replication." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Server MySQL ini berfungsi sebagai master dalam proses " "replication." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Server MySQL ini berfungsi sebagai slave dalam proses replication." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Status replikasi" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Penerimaan" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Pengiriman" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Koneksi konkuren maks." -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Gagal" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Pengguguran" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Perintah" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10122,11 +10123,11 @@ msgstr "" "Jumlah koneksi yang digugurkan karena klien terputus tanpa menutup koneksi " "dengan baik." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL yang gagal." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10136,16 +10137,16 @@ msgstr "" "melebihi nilai binlog_cache_size dan menggunakan berkas temporer untuk " "menyimpan perintah dari transaksi." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Jumlah transaksi yang menggunakan singgahan log biner temporer." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL (baik berhasil maupun tidak)." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10157,11 +10158,11 @@ msgstr "" "mungkin perlu meningkatkan nilai tmp_table_size agar tabel temporer disimpan " "di yang berbasis memori daripada yang berbasis diska." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Jumlah berkas temporer yang telah dibuat mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10169,7 +10170,7 @@ msgstr "" "Jumlah tabel temporer dalam-memori yang dibuat otomatis oleh server sewaktu " "mengeksekusi perintah." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10177,7 +10178,7 @@ msgstr "" "Jumlah baris yang ditulis oleh INSERT DELAYED yang menyebabkan beberapa " "galat (kemungkinan karena kunci duplikat)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10185,30 +10186,30 @@ msgstr "" "Jumlah thread handler INSERT DELAYED yang dipakai. Setiap tabel berbeda yang " "menggunakan INSERT DELAYED mendapat satu thread sendiri." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Jumlah baris INSERT DELAYED yang ditulis." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Jumlah perintah FLUSH yang dieksekusi." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Jumlah perintah COMMIT internal." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Berapa kali suatu baris dihapus dari suatu tabel." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10218,7 +10219,7 @@ msgstr "" "bahwa server melakukan banyak pemindaian indeks lengkap; sebagai contoh, " "SELECT col1 FROM foo, dengan asumsi bahwa col1 diindeks." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10227,7 +10228,7 @@ msgstr "" "tinggi merupakan indikasi bagus bahwa kueri dan tabel Anda diindeks dengan " "baik." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10237,7 +10238,7 @@ msgstr "" "bertambah jika Anda melakukan kueri terhadap kolom indeks dengan suatu " "rentang batasan atau jika Anda melakukan pemindaian indeks." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10245,7 +10246,7 @@ msgstr "" "Jumlah permintaan membaca baris sebelumnya dalam urutan kunci. Metode baca " "ini terutama digunakan untuk mengoptimalkan ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10257,7 +10258,7 @@ msgstr "" "Anda mungkin memiliki banyak kueri yang mengharuskan MySQL memindai seluruh " "tabel atau Anda memiliki join yang tidak menggunakan kunci dengan baik." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10269,42 +10270,42 @@ msgstr "" "bahwa tabel Anda tidak diindeks dengan baik atau bahwa kueri Anda tidak " "ditulis dengan memanfaatkan indeks yang Anda miliki." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Jumlah perintah ROLLBACK internal." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Jumlah permintaan untuk memperbarui baris dalam tabel." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Jumlah permintaan untuk menambah baris dalam tabel." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Jumlah halaman yang mengandung data (kotor atau bersih)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Jumlah halaman kotor saat ini." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Jumlah halaman bebas." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10312,33 +10313,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10347,244 +10348,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Jumlah operasi fsync() tunda saat ini." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Jumlah baca tunda saat ini." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Jumlah tulis tunda saat ini." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Jumlah data yang dibaca sampai saat ini, dalam bita." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Jumlah total baca data." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Jumlah total tulis data." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Jumlah halaman yang dibaca." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Jumlah halaman yang ditulis." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Jumlah baris yang dihapus dari tabel InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Jumlah baris yang ditambahkan pada tabel InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Jumlah baris yang dibaca dari tabel InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Jumlah baris yang diperbarui pada tabel InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Percentage of used open files limit" msgid "Percentage of used key cache (calculated value)" msgstr "Persentase limit berkas terbuka yang dipakai" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10592,99 +10593,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10692,18 +10693,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10711,63 +10712,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Tingkat penggunaan singgahan thread %%" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Jalankan Pemantauan" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Petunjuk/Penyiapan" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Selesai mengatur ulang/mengedit bagan" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Tambahkan bagan" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Atur ulang/edit bagan" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Laju penyegaran" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Kolom bagan" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Pengaturan bagan" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Kembalikan nilai bawaan" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Instruksi Pemantauan" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10776,7 +10777,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10784,18 +10785,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10803,11 +10804,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Harap catat:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10815,85 +10816,85 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Bagan bawaan" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Variabel status" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Pilih seri:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Biasa dipantau" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "atau masukkan nama variabel:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Tampilkan sebagai nilai diferensial" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Terapkan pemisah" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Sertakan satuan kepada nilai data" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Tambahkan seri ini" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Bersihkan seri" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Seri pada Bagan:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Statistik log" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Rentang waktu pilihan:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Penganalisis kueri" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d detik" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11636,35 +11637,35 @@ msgstr "Cek integriti referensial:" msgid "Showing tables" msgstr "Menampilkan tabel" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Penggunaan ruang" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektif" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistik Baris" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamis" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Panjang baris" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Besar baris " -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Indeks otomatis berikut" @@ -11687,7 +11688,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Spasial" @@ -11739,51 +11740,51 @@ msgstr "Suatu indeks telah ditambahkan pada %s" msgid "Show more actions" msgstr "Tampilkan tindakan lain" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Hapus kolom" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Tampilan edit" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Tampilan relasi" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Usulkan struktur tabel" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Tambah kolom" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Pada Akhir Tabel" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Pada Awal Tabel" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Setelah %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Buat indeks pada  %s  kolom" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12291,8 +12292,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12418,8 +12419,8 @@ msgstr "" #| "Rate of temporary tables being written to disk: %s, this value should be " #| "less than 1 per hour" msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "Tingkat pembuatan tabel temporer ke diska: %s, nilai ini hasul kurang dari 1 " "per jam" diff --git a/po/it.po b/po/it.po index 2a2fb683c9..0c0a0d102c 100644 --- a/po/it.po +++ b/po/it.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-03 03:23+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: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgstr "" "bloccando gli aggiornamenti fra finestre a causa di qualche impostazione di " "sicurezza." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Cerca" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Esegui" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Chiave" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Descrizione" @@ -118,13 +119,13 @@ msgstr "Commento del database: " msgid "Table comments" msgstr "Commenti alla tabella" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Commenti alla tabella" msgid "Column" msgstr "Campo" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Collegamenti a" msgid "Comments" msgstr "Commenti" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Commenti" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "No" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "No" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Visualizza dump (schema) del database" msgid "No tables found in database." msgstr "Non ci sono tabelle nel database." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Seleziona tutto" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Deseleziona tutto" @@ -322,12 +323,12 @@ msgstr "Aggiungi vincoli" msgid "Switch to copied database" msgstr "Passa al database copiato" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Codifica caratteri" @@ -350,17 +351,17 @@ msgstr "Modifica o esporta schema relazionale" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabella" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Righe" @@ -375,21 +376,21 @@ msgstr "in uso" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Creazione" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Ultimo cambiamento" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Ultimo controllo" @@ -452,7 +453,7 @@ msgid "Del" msgstr "Elimina" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Oppure" @@ -493,85 +494,87 @@ msgstr "Invia Query" msgid "Access denied" msgstr "Accesso negato" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "almeno una delle parole" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "tutte le parole" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "la frase esatta" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "come espressione regolare" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Cerca i risultati per \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s corrispondenza nella tabella %2$s" -msgstr[1] "%1$s corrispondenze nella tabella %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Mostra" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Eliminare le corrispondenze relative alla tabella %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Elimina" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totale: %s corrispondenza" msgstr[1] "Totale: %s corrispondenze" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s corrispondenza nella tabella %2$s" +msgstr[1] "%1$s corrispondenze nella tabella %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Mostra" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Eliminare le corrispondenze relative alla tabella %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Elimina" + +#: db_search.php:362 msgid "Search in database" msgstr "Cerca nel database" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Parole o valori da cercare (carattere jolly: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Cerca:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Le parole sono separate da spazi (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Nelle tabelle:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "All'interno del campo:" @@ -610,8 +613,8 @@ msgstr "Il tracking non è attivo." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." @@ -621,7 +624,7 @@ msgstr "" msgid "View" msgstr "Vista" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -631,93 +634,89 @@ msgstr "Replicazione" msgid "Sum" msgstr "Totali" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Se selezionati:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Seleziona tutti" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Deseleziona tutti" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esporta" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Svuota" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Elimina" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Controlla tabella" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Ottimizza tabella" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Ripara tabella" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizza tabella" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Aggiungi prefisso alla tabella" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Sostituisci il prefisso della tabella" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copia tabella col prefisso" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dizionario dei dati" @@ -730,9 +729,9 @@ msgstr "Tabelle monitorate" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Database" @@ -749,17 +748,17 @@ msgstr "Creato" msgid "Updated" msgstr "Aggiornato" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Stato" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Azione" @@ -791,7 +790,7 @@ msgstr "Snapshot della struttura" msgid "Untracked tables" msgstr "Tabelle non monitorate" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Controlla tabella" @@ -929,8 +928,8 @@ msgstr "" #: import.php:86 #, 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 "" "Stai probabilmente cercando di caricare sul server un file troppo grande. " "Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare " @@ -1012,13 +1011,13 @@ msgstr "" "basso per consentire a phpMyAdmin di terminare l'operazione." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "La query SQL è stata eseguita con successo" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Indietro" @@ -1102,8 +1101,8 @@ msgstr "La password è vuota!" msgid "The passwords aren't the same!" msgstr "La password non coincide!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Aggiungi utente" @@ -1121,7 +1120,7 @@ msgid "Close" msgstr "Chiudi" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1148,13 +1147,13 @@ msgstr "Dati statici" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Totale" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Altre" @@ -1184,7 +1183,7 @@ msgstr "Traffico del server (in KiB)" msgid "Connections since last refresh" msgstr "Numero di connessioni dall'ultimo aggiornamento" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processi" @@ -1249,13 +1248,13 @@ msgstr "Swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1307,7 +1306,7 @@ msgstr "Byte inviati" msgid "Bytes received" msgstr "Byte ricevuti" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Connessioni" @@ -1346,11 +1345,11 @@ msgstr "%d tabella/e" msgid "Questions" msgstr "Domande" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Traffico" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Impostazioni" @@ -1373,8 +1372,8 @@ msgstr "Aggiungi almeno una variabile alla serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Nessuno" @@ -1474,7 +1473,7 @@ msgstr "Modifica impostazioni" msgid "Current settings" msgstr "Impostazioni attuali" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Titolo del diagramma" @@ -1564,7 +1563,7 @@ msgstr "Spiega l'output" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Tempo" @@ -1661,10 +1660,10 @@ msgstr "" "Impossibile creare la tabella dei grafici con la configurazione importata. " "Ripristino alle impostazioni predefinite in corso..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" @@ -1716,9 +1715,9 @@ msgstr "Variabile / formula utilizzata" msgid "Test" msgstr "Prova" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Annulla" @@ -1746,9 +1745,9 @@ msgstr "Eliminazione Campo" msgid "Adding Primary Key" msgstr "Creazione chiave primaria" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1828,7 +1827,7 @@ msgstr "" "La definizione delle funzioni memorizzate deve contenere un istruzione " "RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Editor di ENUM/SET" @@ -1869,8 +1868,8 @@ msgstr "Mostra riquadro query SQL" msgid "No rows selected" msgstr "Nessuna riga selezionata" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Modifica" @@ -1885,7 +1884,7 @@ msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2395,16 +2394,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "al secondo" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "al minuto" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "all'ora" @@ -2506,8 +2505,8 @@ msgstr "Ordina per chiave" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opzioni" @@ -2560,7 +2559,7 @@ msgid "The row has been deleted" msgstr "La riga è stata cancellata" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Rimuovi" @@ -2589,27 +2588,27 @@ msgstr "totale" msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Visualizzare dati GIS" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Crea vista" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Link non trovato" @@ -2681,46 +2680,46 @@ msgstr "Da questo punto in poi, i cookie devono essere abilitati." msgid "Javascript must be enabled past this point" msgstr "Da questo punto in poi, JavaScript deve essere abilitato" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Nessun indice definito!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indici" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unica" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Compresso" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinalità" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Commenti" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "La chiave primaria è stata eliminata" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "L'indice %s è stato eliminato" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2729,9 +2728,9 @@ msgstr "" "Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, " "possibilmente, essere rimosso." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Database" @@ -2741,7 +2740,7 @@ msgstr "Database" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2754,102 +2753,102 @@ msgstr "Server" msgid "Structure" msgstr "Struttura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Inserisci" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operazioni" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Tracking" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggers" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "La tabella sembra essere vuota!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Il database sembra essere vuoto!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Query da esempio" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegi" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routines" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Eventi" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Utenti" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronizza" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log binario" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variabili" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Set di caratteri" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plugin" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motori" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Errore" @@ -2891,66 +2890,66 @@ msgstr "Tabelle recenti" msgid "There are no recent tables" msgstr "Non ci sono tabelle recenti" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s è disponibile su questo server MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s è stato disabilitato su questo server MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "stato della tabella sconosciuto: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Database di origine `%s` non é stato trovato!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Tema `%s` non é stato trovato!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Database non valido" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Nome tabella non valido" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabella %1$s è stata rinominata %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" "Impossibile salvare la tabella delle preferenze per l'interfaccia utente" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2959,7 +2958,7 @@ msgstr "" "Impossibile ripulire la tabella delle preferenze UI (v. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2970,22 +2969,22 @@ msgstr "" "saranno mantenuti se ricaricate questa pagina. Controllate se la struttura " "della tabella è cambiata." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funzione" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operatore" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Valore" @@ -2993,7 +2992,7 @@ msgstr "Valore" msgid "Table Search" msgstr "Ricerca nella Tabella" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Modifica/Inserisci" @@ -3123,14 +3122,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3388,8 +3387,8 @@ msgstr "Benvenuto in %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "La ragione di questo è che probabilmente non hai creato alcun file di " "configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno." @@ -3505,12 +3504,12 @@ msgstr "Tabelle" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Dati" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Overhead" @@ -3622,18 +3621,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Query SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3721,7 +3720,7 @@ msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" msgid "Click to toggle" msgstr "Clicca per alternare" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" @@ -3731,8 +3730,8 @@ msgstr "Cerca sul tuo computer:" msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" @@ -3918,7 +3917,7 @@ msgstr "Ripristinare valori predefiniti" msgid "Allow users to customize this value" msgstr "Consente agli utenti di personalizzare questo valore" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4213,7 +4212,7 @@ msgid "Character set of the file" msgstr "Codifica dei caratteri del file" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formato" @@ -4514,7 +4513,7 @@ msgstr "Frame di navigazione" msgid "Customize appearance of the navigation frame" msgstr "Personalizza l'aspetto del frame di navigazione" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servers" @@ -5884,7 +5883,7 @@ msgstr "" "Definisce se la finestra della query deve stare sullo schermo dopo la " "conferma" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Nascondi riquadro query SQL" @@ -6230,7 +6229,7 @@ msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP." msgid "possible deep recursion attack" msgstr "possibile attacco di ricorsione in profondità" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6238,15 +6237,15 @@ msgstr "" "Il server non risponde (o il socket del server locale MySQL non è " "correttamente configurato)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Il server non risponde." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Controllate i privilegi della cartella che contiene il database." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Dettagli..." @@ -6302,8 +6301,8 @@ msgstr "Crea tabelle" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nome" @@ -6405,8 +6404,8 @@ msgstr ", @TABLE@ diventerá il nome della tabella" #, 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 "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -6418,7 +6417,7 @@ msgid "use this for future exports" msgstr "usa questo per esportazioni future" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Set di caratteri del file:" @@ -6946,8 +6945,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." @@ -7011,7 +7010,7 @@ msgstr "Evento" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definizione" @@ -7072,7 +7071,7 @@ msgstr "Mostra tipi MIME" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7293,8 +7292,8 @@ msgstr "Esporta contenuti" msgid "No data found for GIS visualization." msgstr "Nessun data trovato per la visualizzazione GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." @@ -7472,78 +7471,78 @@ msgstr "Modalitá di compatibilità SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non usare AUTO_INCREMENT per il valori zero" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Nascondi" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" "A causa della lunghezza,
    questo campo potrebbe non essere modificabile" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Dato binario - non modificare" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "directory di upload del web-server" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Riprendi inserimento con %s righe" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "e quindi" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Mostra la insert query" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Indietro" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Modifica il record successivo" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" @@ -7567,7 +7566,7 @@ msgid "To" msgstr "A" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Invia" @@ -7583,7 +7582,7 @@ msgstr "Aggiungi prefisso" msgid "Do you really want to execute the following query?" msgstr "Sei sicuro di voler eseguire la seguente query?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Nessun cambiamento" @@ -7834,7 +7833,7 @@ msgid "" msgstr "" "Prego vedi la documentazione su come aggiornare la tabella column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Query SQL aggiunte ai preferiti" @@ -7885,6 +7884,10 @@ msgstr "" msgid "no description" msgstr "nessuna descrizione" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Deseleziona tutti" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Configurazione slave" @@ -7921,8 +7924,8 @@ msgstr "Stato master" msgid "Slave status" msgstr "Stato slave" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variabile" @@ -7949,7 +7952,7 @@ msgstr "Qualsiasi utente" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Utilizza campo text" @@ -7982,10 +7985,10 @@ msgid "Generate Password" msgstr "Genera Password" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7997,7 +8000,7 @@ msgid "Sorry, we failed to restore the dropped event." msgstr "" "Ci dispiace, non siamo riusciti a ripristinare l'evento che è stato rimosso." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "La query di backup è:" @@ -8012,7 +8015,7 @@ msgstr "L'evento %1$s è stato modificato." msgid "Event %1$s has been created." msgstr "L'evento %1$s è stato creato." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8023,14 +8026,14 @@ msgstr "" msgid "Edit event" msgstr "Modifica evento" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Errore nel processare la richiesta" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Dettagli" @@ -8043,7 +8046,7 @@ msgstr "Nome dell'evento" msgid "Event type" msgstr "Tipo di evento" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Cambia a %s" @@ -8070,13 +8073,13 @@ msgstr "Fine" msgid "On completion preserve" msgstr "Conserva dopo il completamento" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definer" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Il definer deve essere nel seguente formato: \"nomeutente@nomehost\"" @@ -8101,7 +8104,7 @@ msgstr "È necessario fornire un valido tipo per l'evento." msgid "You must provide an event definition." msgstr "È necessario fornire una definizione per l'evento." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Nuovo" @@ -8121,7 +8124,7 @@ msgstr "Stato del pianificatore degli eventi" msgid "Returns" msgstr "Ritorna" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8133,91 +8136,91 @@ msgstr "" "potrebbe fallire![/strong] É consigliato di utilizzare l'estensione 'mysqli' " "per evitare eventuali problemi." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo di routine non valido: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" "Ci dispiace, non siamo riusciti a ripristinare la routine che é stata " "rimossa." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "La routine %1$s é stata modificata." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "La routine %1$s é stata creata." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Modifica routine" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Nome della routine" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Direzione" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lunghezza/Valori" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Aggiungi parametro" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Rimuovi l'ultimo parametro" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Tipo di risultato" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Lunghezza/valori del risultato" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Opzioni del risultato" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "É deterministica" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Tipo di sicurezza" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Tipo di accesso dati SQL" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "È necessario fornire il nome della routine" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Direzione invalida \"%s\" é stata fornita per un parametro." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8225,20 +8228,20 @@ msgstr "" "È necessario fornire lunghezza o valori per parameteri della routine del " "tipo ENUM, SET, VARCHAR e VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" "È necessario fornire un nome ed un tipo per ogni parametro della routine." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "È necessario fornire un valido tipo del risultato." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "È necessario fornire una definizione per la routine." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8249,18 +8252,18 @@ msgstr[1] "" "%d righe influenzate dall'ultima istruzione eseguita all'interno della " "procedura" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Risultato di esecuzione della routine %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Esegui routine" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Parametri della routine" @@ -8545,7 +8548,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Lingua non conosciuta : %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Server corrente" @@ -8576,50 +8579,50 @@ msgstr "Database di destinazione" msgid "Click to select" msgstr "Clicca per selezionare" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Eseguendo query SQL sul server %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Cancella" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Campi" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Sostituisci segnalibro esistente se con lo stesso nome" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Delimitatori" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Mostra di nuovo questa query" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Visualizza solo" @@ -8724,7 +8727,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indice" @@ -8777,12 +8780,12 @@ msgid "As defined:" msgstr "Come definito:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primaria" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Testo completo" @@ -8795,12 +8798,12 @@ msgstr "" msgid "after %s" msgstr "dopo %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Aggiungi %s campo/i" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Devi aggiungere almeno un campo." @@ -8856,7 +8859,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Mostra un collegamento per scaricare quest'immagine." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9036,8 +9039,8 @@ msgid "Protocol version" msgstr "Versione protocollo" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Utente" @@ -9173,20 +9176,20 @@ 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:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Nessun database" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filtra tabelle in base al nome" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtra tabelle in base al nome" @@ -9207,7 +9210,7 @@ msgstr "Mostra/nascondi il menù di sinistra" msgid "Save position" msgstr "Salva la posizione" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Crea relazioni" @@ -9267,37 +9270,37 @@ msgstr "Mostra/nascondi tabella senza relazioni" msgid "Number of tables" msgstr "Numero di tabelle" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Elimina relazione" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Operatore relazionario" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Eccetto" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "subquery" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Rinomina a" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nuovo nome" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Globale" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Opzioni attive" @@ -9462,13 +9465,13 @@ msgstr "Selezionare il log binario da visualizzare" msgid "Files" msgstr "File" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Tronca le Query Mostrate" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Mostra query complete" @@ -9484,7 +9487,7 @@ msgstr "Posizione" msgid "Original position" msgstr "Posizione originale" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informazioni" @@ -9512,11 +9515,11 @@ msgstr "Replicazione master" msgid "Slave replication" msgstr "Replicazione slave" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Abilita le Statistiche" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9768,7 +9771,7 @@ msgid "None" msgstr "Nessun" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" @@ -9785,7 +9788,7 @@ msgstr "Amministrazione" msgid "Global privileges" msgstr "Privilegi globali" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" @@ -9805,7 +9808,7 @@ msgstr "Informazioni di Login" msgid "Do not change the password" msgstr "Non cambiare la password" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Nessun utente trovato." @@ -9854,7 +9857,7 @@ msgstr "Gli utenti selezionati sono stati cancellati con successo." msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Modifica Privilegi" @@ -9867,7 +9870,7 @@ msgid "Export all" msgstr "Esporta tutto" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Qualsiasi" @@ -9884,83 +9887,83 @@ msgstr "Privilegi per %s" msgid "Users overview" msgstr "Vista d'insieme degli utenti" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Rimuove gli utenti selezionati" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilegi relativi ai campi" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Aggiungi privilegi sul seguente database" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "I caratteri jolly _ e % dovrebbero essere preceduti da un \\ per l'utilizzo " "letterale" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Aggiungi privilegi sulla seguente tabella" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Cambia le Informazioni di Login / Copia Utente" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nuovo utente con gli stessi privilegi e ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... mantieni quello vecchio." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... cancella quello vecchio dalla tabella degli utenti." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... revoca tutti i privilegi attivi da quello vecchio e in seguito " "cancellalo." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9968,41 +9971,41 @@ msgstr "" "... cancella quello vecchio dalla tabella degli utenti e in seguito ricarica " "i privilegi." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Database per l'utente" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Garantisci tutti i privilegi per il database "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Utenti che hanno accesso a "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globale" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "specifico del database" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "L'utente é stato aggiunto." @@ -10290,23 +10293,23 @@ msgstr "Mostra solo i valori di allarme" msgid "Filter by category..." msgstr "Filtra per categoria..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Mostra i valore non formattati" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Collegamenti associati:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Lancia l'analyzer" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Introduzioni" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10314,7 +10317,7 @@ msgstr "" "Il sistema Advisor può fornire raccomandazioni sulle variabili del server " "analizzando le variabili di stato del server." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10324,7 +10327,7 @@ msgstr "" "semplici calcoli e regole pratiche che non necessariamente si possono " "applicare al vostro sistema." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10335,7 +10338,7 @@ msgstr "" "cambiamento. Una regolazione sbagliata può avere effetti negativi sulle " "prestazioni." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10347,31 +10350,31 @@ msgstr "" "misurabile." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Questions eseguiti dall'avvio: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Istruzioni" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Traffico rete dall'avvio: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Questo server MySQL sta girando da %1$s. É stato avviato il %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10379,19 +10382,19 @@ msgstr "" "Questo server MySQL funziona come un master e slave nel " "processo di replicazione." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Questo server MySQL funziona come un master nel processo di " "replicazione." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Questo server MySQL funziona come un slave nel processo di " "replicazione." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10399,11 +10402,11 @@ msgstr "" "Per ulteriori informazioni a riguardo lo stato di replicazione su questo " "server, vedi la seztione sulla replicazione." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Stato di replicazione" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10412,35 +10415,35 @@ msgstr "" "dismisura e per questa ragione le statistiche riportate dal server MySQL " "potrebbero non essere corrette." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Ricevuti" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Spediti" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "max. connessioni contemporanee" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Tentativi falliti" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Fallito" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Comando" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10448,11 +10451,11 @@ msgstr "" "Il numero di connessioni fallite perché il cliente é morto senza chiudere la " "connessione correttemente." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Il numero di tentativi falliti di connettere al server MySQL." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10462,19 +10465,19 @@ msgstr "" "ma che oltrepassano il valore di binlog_cache_size e usano un file " "temporaneo per salvare gli statements dalle transazioni." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Il numero delle transazioni che usano la cache temporanea del log binario." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Il numero di tentativi di connesione al server MySQL (completati con " "successo o no)." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10486,11 +10489,11 @@ msgstr "" "grande, potresti voler aumentare il valore tmp_table_size, per fare im modo " "che le tabelle temporanee siano memory-based anzichè disk-based." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10498,7 +10501,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10506,7 +10509,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10514,23 +10517,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Il numero di volte in cui una riga è stata cancellata da una tabella." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10540,7 +10543,7 @@ msgstr "" "tabella sulla base di un nome dato. Questo è chaiamto discovery. " "Handler_discover indica il numero di volte che una tabella è stata trovata." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10551,7 +10554,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10560,7 +10563,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10571,7 +10574,7 @@ msgstr "" "indice con un range costante, oppure se stai facendo una scansione degli " "indici." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10580,7 +10583,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10593,7 +10596,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10606,37 +10609,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Il numero di richieste per aggiornare una riga in una tabella." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Il numero di richieste per inserire una riga in una tabella." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Il numero di buffer pool pages che hanno avuto richiesta di essere " "aggiornate." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10646,7 +10649,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10658,11 +10661,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10670,7 +10673,7 @@ msgstr "" "Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando " "una query legge una porzione di una tabella, ma in ordine casuale." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10678,11 +10681,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10690,7 +10693,7 @@ msgstr "" "Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool " "e che devono fare una lettura di una pagina singola." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10705,55 +10708,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10761,35 +10764,35 @@ msgstr "" "Il numero di attese che abbiamo avuto perchè il buffer di log era troppo " "piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Il numero di scritture effettuate da fsync() sul log file." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10798,51 +10801,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Il numero di volte che un row lock ha dovuto attendere." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10851,7 +10854,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10859,7 +10862,7 @@ msgstr "" "Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore " "per determinare quanta cache chiave è in uso." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10869,15 +10872,15 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Percentuale di cache delle chiavi utilizzata (valore calcolato)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Il numero di richieste per le ggere un blocco chiave dalla cache." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10888,26 +10891,26 @@ msgstr "" "rapporto di cache miss rate può essere calcolato come Key_reads/" "Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Il numero di richieste per scrivere una blocco chiave nella cache." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Il numero di scritture fisiche di un blocco chiave sul disco." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10918,7 +10921,7 @@ msgstr "" "query per la stessa operazione di query. Il valore di default è 0, che " "significa che nessuna query è stata ancora compilata." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10926,12 +10929,12 @@ msgstr "" "Il massimo numero di connessioni che sono state utilizzate " "contemporaneamente dall'avvio del server." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "In numero di righe in attesa di essere scritte nella coda INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10939,20 +10942,20 @@ msgstr "" "Il numero di tabelle che sono state aperte. Se il valore opened_tables è " "grande, probabilmente il valore di table cache è troppo piccolo." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Il numero di stream che sono aperti (usato principalmente per il logging)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10962,19 +10965,19 @@ msgstr "" "potrebbero indicare problemi di fragmentazione che possono essere risolti " "con l'esecuzione dell'istruzione FLUSH QUERY CACHE." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10987,7 +10990,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10995,19 +10998,19 @@ msgstr "" "Il numero di query non in cache (impossibilità di inserirle nella cache " "oppure non inserite per i settaggi del parametro query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11015,13 +11018,13 @@ msgstr "" "Il numero di joins che non usano gli indici. Se questo valore non è 0, " "dovresti controllare attentamente gli indici delle tue tabelle." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Il numero di joins che usano una ricerca limitata su di una tabella di " "riferimento." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11030,7 +11033,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11038,17 +11041,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" "Il numero di join che hanno effettuato una scansione completa della prima " "tabella." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11056,12 +11059,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Questa chiave è ON se questo è un server slave connesso ad un server master." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11069,12 +11072,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Numero di query che hanno impiegato più di long_query_time secondi." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11084,23 +11087,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Il numero di volte che un table lock è stato eseguito immediatamente." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11112,7 +11115,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11122,11 +11125,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11138,49 +11141,49 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Percentuale hit nella cache del thread" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Avvia monitoraggio" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Istruzioni/Configurazione" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Ho finito di modificare/muovere i grafici" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Aggiungi grafico" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Muovi/modifica i grafici" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Ritmo di aggiornamenti" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Numero di grafici per rigo" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Disposizione dei grafici" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11188,15 +11191,15 @@ msgstr "" "La configurazione dei grafici è memorizzata nella memoria locale dei " "browser. Potreste voler esportarla se avete una configurazione complicata." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Ripristina i valori predefiniti" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Istruzioni per monitoraggio" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11210,7 +11213,7 @@ msgstr "" "slow_query_log oppure general_log. Notate comunque che general_log produce " "molti dati e aumenta il carico del server fino al 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11223,11 +11226,11 @@ msgstr "" "potete ancora utilizzare le funzionalità di generazione dei grafici del " "server." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Utilizzo del monitor:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11238,7 +11241,7 @@ msgstr "" "sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona " "dentellata su ogni grafico." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11251,11 +11254,11 @@ msgstr "" "raggruppate nella quale potete cliccare su ogni comando SELECT che appare " "per l'analisi successiva." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Nota:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11267,88 +11270,88 @@ msgstr "" "compito intensivo per cui si consiglia di selezionare solo un intervallo " "temporale piccolo e disabilitare il general_log e svuotare la sua tabella." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Valori predefiniti del grafico" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Variabili di stato" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Seleziona serie:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Monitorate di solito" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "or scrivi il nome di una variabile:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Visualizzare come valore differenziale" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Applica un divisore" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Aggiungi un unitá ai valori dei dati" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Aggiungi questa serie" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Cancella la serie" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Serie del grafico:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Registra statistiche" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Intervallo di tempo selezionato:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Rimuovi dati variabili dai comandi INSERT per ottenere un miglior " "raggruppamento" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Scegli il log dal quale generare le statistiche." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "I risultati verranno raggruppati secondo il testo di query." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Analyzer della query" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d secondo" msgstr[1] "%d secondi" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11763,10 +11766,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:312 @@ -11781,8 +11784,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:314 #, php-format @@ -12138,35 +12141,35 @@ msgstr "Controlla l'integrità delle referenze:" msgid "Showing tables" msgstr "Mostra le tabelle" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Spazio utilizzato" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effettivo" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistiche righe" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statico" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamico" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Lunghezza riga" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Dimensione riga" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Prossimo autoindex" @@ -12191,7 +12194,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Vincolo della chiave esterna" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Spatial" @@ -12241,51 +12244,51 @@ msgstr "Un indice è stato aggiunto in %s" msgid "Show more actions" msgstr "Mostra piú azioni" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Rimuovi campo/i" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Modifica la vista" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Vedi relazioni" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Proponi la struttura della tabella" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Aggiungi campo" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Alla fine della tabella" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "All'inizio della tabella" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Dopo %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Crea un indice su  %s campi" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partizionato" @@ -12832,12 +12835,12 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Il rapporto corrente tra la memoria libera nella cache delle query e la " -"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra " -"l'80%%" +"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra l'80%" +"%" #: libraries/advisory_rules.txt:174 msgid "Query cache fragmentation" @@ -12991,8 +12994,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% di tutti gli ordinamenti causano la creazione di tabelle temporanee, " "questo valore dovrebbe essere inferiore al 10%%." @@ -13916,8 +13919,8 @@ msgstr "concurrent_insert è impostato a 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database " -#~ "%s?" +#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database %" +#~ "s?" #~ msgid "Unknown error while uploading." #~ msgstr "Errore sconosciuto durante il caricamento del file." diff --git a/po/ja.po b/po/ja.po index db935929f3..cc05c1ee2e 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-02 11:09+0200\n" "Last-Translator: Yuichiro Takahashi \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "たか、ブラウザのセキュリティ設定でクロスウィンドウの更新をブロックしているも" "のと思われます。" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "検索" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "実行" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "キー名" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "説明" @@ -117,13 +118,13 @@ msgstr "データベースのコメント: " msgid "Table comments" msgstr "テーブルのコメント" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "テーブルのコメント" msgid "Column" msgstr "カラム" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "データ型" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "リンク先" msgid "Comments" msgstr "コメント" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "コメント" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "いいえ" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "いいえ" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "データベースのダンプ (スキーマ) 表示" msgid "No tables found in database." msgstr "このデータベースにはテーブルがありません。" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "全選択" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "全選択解除" @@ -321,12 +322,12 @@ msgstr "制約を追加する" msgid "Switch to copied database" msgstr "コピーしたデータベースに切り替える" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "照合順序" @@ -349,17 +350,17 @@ msgstr "リレーショナルスキーマを編集またはエクスポートす #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "テーブル" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "行" @@ -374,21 +375,21 @@ msgstr "使用中" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "作成日時" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "最終更新" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "最終検査" @@ -450,7 +451,7 @@ msgid "Del" msgstr "削除" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "または" @@ -491,83 +492,85 @@ msgstr "クエリを実行する" msgid "Access denied" msgstr "アクセスは拒否されました" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "いずれかの単語を含む" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "すべての単語を含む" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "完全一致" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "正規表現" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" の検索結果 %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s 件 (テーブル %2$s)" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "表示" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "テーブル %s に対して条件に一致したものを削除しますか?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "削除" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "合計: %s 件" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s 件 (テーブル %2$s)" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "表示" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "テーブル %s に対して条件に一致したものを削除しますか?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "削除" + +#: db_search.php:362 msgid "Search in database" msgstr "データベース内検索" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "検索する単語や値 (ワイルドカード: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "検索条件:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "各単語は空白文字 (\" \") で区切ってください。" -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "検索するテーブル:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "検索するカラム:" @@ -606,8 +609,8 @@ msgstr "SQL コマンドの追跡は非アクティブです。" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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をご覧ください。" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -615,7 +618,7 @@ msgstr "このビューの最低行数。詳しくは%sドキュメント%sを msgid "View" msgstr "ビュー" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -625,93 +628,89 @@ msgstr "レプリケーション" msgid "Sum" msgstr "合計" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです。" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "チェックしたものを:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "すべてチェックする" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "すべてのチェックを外す" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "エクスポート" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "空にする" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "削除" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "テーブルをチェックする" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "テーブルを最適化する" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "テーブルを修復する" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "テーブルを分析する" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "接頭辞をテーブル名に追加する" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "テーブル名の接頭辞を付け替える" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "接頭辞を付け替えてテーブルをコピーする" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "データ辞書" @@ -724,9 +723,9 @@ msgstr "SQL コマンドを追跡しているテーブル" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "データベース" @@ -743,17 +742,17 @@ msgstr "作成日時" msgid "Updated" msgstr "更新日時" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "状態" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "操作" @@ -785,7 +784,7 @@ msgstr "構造のスナップショット" msgid "Untracked tables" msgstr "SQL コマンドを追跡していないテーブル" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "テーブルを追跡する" @@ -922,8 +921,8 @@ msgstr "" #: import.php:86 #, 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 をご覧ください。" @@ -1000,13 +999,13 @@ msgstr "" "の時間制限を伸ばさない限りこのデータのインポートはできません。" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL は正常に実行されました" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "戻る" @@ -1090,8 +1089,8 @@ msgstr "パスワードが空です!" msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "ユーザを追加する" @@ -1109,7 +1108,7 @@ msgid "Close" msgstr "閉じる" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1136,13 +1135,13 @@ msgstr "統計データ" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "合計" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "その他" @@ -1172,7 +1171,7 @@ msgstr "サーバのトラフィック (単位:KiB)" msgid "Connections since last refresh" msgstr "更新間隔中の接続数" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "プロセス" @@ -1235,13 +1234,13 @@ msgstr "システムスワップ" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1293,7 +1292,7 @@ msgstr "送信" msgid "Bytes received" msgstr "受信" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "接続" @@ -1332,11 +1331,11 @@ msgstr "%d テーブル" msgid "Questions" msgstr "問い合わせ" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "トラフィック" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "設定" @@ -1359,8 +1358,8 @@ msgstr "少なくとも1つの系列を追加してください" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "なし" @@ -1460,7 +1459,7 @@ msgstr "設定の変更" msgid "Current settings" msgstr "現在の設定" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "グラフの題名" @@ -1545,7 +1544,7 @@ msgstr "EXPLAIN の結果" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "時間" @@ -1640,10 +1639,10 @@ msgstr "" "インポートした設定でのグラフの配置に失敗しました。設定をデフォルトに戻しま" "す..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "インポート" @@ -1691,9 +1690,9 @@ msgstr "判断値の算出方法" msgid "Test" msgstr "判断基準" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "キャンセル" @@ -1721,9 +1720,9 @@ msgstr "カラムを削除しています" msgid "Adding Primary Key" msgstr "主キーを追加しています" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1799,7 +1798,7 @@ msgstr "削除しています" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "ストアドファンクションの定義には、RETURN 文を含めなければなりません!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET エディタ" @@ -1840,8 +1839,8 @@ msgstr "クエリボックスを表示" msgid "No rows selected" msgstr "行が選択されていません" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "変更" @@ -1856,7 +1855,7 @@ msgid "%d is not valid row number." msgstr "%d は不正な行番号です。" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2359,16 +2358,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "予期しない文字 (行: %1$s)。タブ文字があるべきところに \"%2$s\" がありました。" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "/ 秒" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "/ 分" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "/ 時" @@ -2470,8 +2469,8 @@ msgstr "キーでソート" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "オプション" @@ -2524,7 +2523,7 @@ msgid "The row has been deleted" msgstr "行を削除しました" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "停止" @@ -2551,27 +2550,27 @@ msgstr "合計" msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "グラフで表示する" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "空間情報のデータを視覚化する" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "ビューを作成する" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "リンク先が見つかりません" @@ -2646,46 +2645,46 @@ msgstr "クッキーを有効にしてください。" msgid "Javascript must be enabled past this point" msgstr "Javascript を有効にしてください" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "インデックスが定義されていません!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "インデックス" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "ユニーク" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "圧縮" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "一意な値の数" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "コメント" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "主キーを削除しました" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "インデックス %s を削除しました" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2694,9 +2693,9 @@ msgstr "" "インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" "れません。" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "データベース" @@ -2706,7 +2705,7 @@ msgstr "データベース" msgid "Server" msgstr "サーバ" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2719,102 +2718,102 @@ msgstr "サーバ" msgid "Structure" msgstr "構造" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "挿入" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "操作" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "SQL コマンドの追跡" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "トリガ" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "テーブルが空のようです!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "データベースが空のようです!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "クエリ" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "特権" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "ルーチン" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "イベント" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "デザイナ" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "ユーザ" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "同期" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "バイナリログ" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "変数" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "文字セット" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "プラグイン" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "エンジン" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "エラー" @@ -2853,63 +2852,63 @@ msgstr "最近使用したテーブル" msgid "There are no recent tables" msgstr "最近使用したテーブルはありません" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "このストレージエンジンにはステータスの詳細情報はありません。" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s は有効になっています。" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s は無効になっています。" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません。" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "不明なテーブルステータス: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "元にするデータベース `%s` が見つかりません!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "対象先のデータベース `%s` が見つかりません!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "不正なデータベースです" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "テーブル名が不正です" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "テーブル名を %1$s から %2$s に変更するときにエラーが発生しました" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "テーブル %1$s の名称を %2$s に変更しました。" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "テーブルに対する環境設定が保存できません" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2918,7 +2917,7 @@ msgstr "" "テーブルに対する環境設定のクリーンアップに失敗しました (参照 $cfg['Servers']" "[$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2928,22 +2927,22 @@ msgstr "" "環境プロパティ「%s」が保存できません。ページ更新の際、変更箇所が維持されるこ" "とはないでしょう。テーブル構造を変更されたのであれば確認してみてください。" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "関数" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "演算子" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "値" @@ -2951,7 +2950,7 @@ msgstr "値" msgid "Table Search" msgstr "テーブル検索" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "編集/挿入" @@ -3085,20 +3084,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "単精度浮動小数、有効範囲は -3.402823466E+38 から -1.175494351E-38、0、" "1.175494351E-38 から 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から " -"-2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E" +"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から -" +"2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E" "+308" #: libraries/Types.class.php:311 @@ -3385,11 +3384,11 @@ msgstr "%s へようこそ" #: libraries/auth/config.auth.lib.php:98 #, 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 を利用して設定ファイルを作成してください。" +"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2" +"$s を利用して設定ファイルを作成してください。" #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3501,12 +3500,12 @@ msgstr "テーブル" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "データ" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "オーバーヘッド" @@ -3617,18 +3616,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "実行した SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3716,7 +3715,7 @@ msgstr "%s の機能には既知のバグがあります。%s をご覧くださ msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "アップロードファイル:" @@ -3726,8 +3725,8 @@ msgstr "アップロードファイル:" msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" @@ -3911,7 +3910,7 @@ msgstr "デフォルト値に戻す" msgid "Allow users to customize this value" msgstr "この値の変更をユーザに許可する" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4197,7 +4196,7 @@ msgid "Character set of the file" msgstr "ファイルの文字セット" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "フォーマット" @@ -4497,7 +4496,7 @@ msgstr "ナビゲーションフレーム" msgid "Customize appearance of the navigation frame" msgstr "ナビゲーションフレームの概観の詳細設定" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "サーバ" @@ -5820,7 +5819,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "送信後もクエリボックスを画面上に残しておくかどうかを定義します。" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "クエリボックスを保持する" @@ -6034,8 +6033,8 @@ msgid "" "for import and export operations" msgstr "" "インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/" -"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC" -"%E3%83%9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。" +"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC%E3%83%" +"9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。" #: libraries/config/messages.inc.php:527 msgid "ZIP" @@ -6153,7 +6152,7 @@ msgstr "%s 拡張がありません。PHP の設定をチェックしてみて msgid "possible deep recursion attack" msgstr "深い再帰的な攻撃を受けている可能性があります" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6161,16 +6160,16 @@ msgstr "" "サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま" "せん)。" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "サーバが応答しません。" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" "データベースを含んでいるディレクトリのパーミッションを確認してください。" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "詳細..." @@ -6226,8 +6225,8 @@ msgstr "テーブルを作成" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "名前" @@ -6329,8 +6328,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 を使用して解釈されますので、時刻の書式文字列を使用" "することができます。また、埋め込み変数変換も行われます(%3$s変換されま" @@ -6342,7 +6341,7 @@ msgid "use this for future exports" msgstr "今後のエクスポートでこれを使用する" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "ファイルの文字セット:" @@ -6857,8 +6856,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" @@ -6920,7 +6919,7 @@ msgstr "イベント" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "定義" @@ -6981,7 +6980,7 @@ msgstr "MIME タイプを表示する" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "ホスト" @@ -7190,8 +7189,8 @@ msgstr "内容をエクスポートする" msgid "No data found for GIS visualization." msgstr "視覚化できる空間情報がありません。" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした (行数 0)。" @@ -7367,77 +7366,77 @@ msgstr "SQL 互換モード:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "隠す" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "バイナリ" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "長さによってはこのカラムを
    編集できなくなる場合もあります。" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "バイナリ - 編集不可" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "ウェブサーバ上のアップロードディレクトリ" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 行づつ挿入を行う" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "続いて" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "新しい行として挿入し、エラーは無視する" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "挿入クエリ文を表示する" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "前のページに戻る" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "このページに戻る" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "次の行を編集する" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" @@ -7461,7 +7460,7 @@ msgid "To" msgstr "付け替え先" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "実行する" @@ -7477,7 +7476,7 @@ msgstr "追加する接頭辞" msgid "Do you really want to execute the following query?" msgstr "以下のクエリを本当に実行しますか?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "変更なし" @@ -7727,7 +7726,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "column_comments テーブルの更新方法についてはドキュメントをご覧ください" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "ブックマークされている SQL" @@ -7776,6 +7775,10 @@ msgstr "更新した設定ファイルを読み込むために phpMyAdmin にロ msgid "no description" msgstr "説明がありません" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "すべてのチェックを外す" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "スレーブの設定" @@ -7812,8 +7815,8 @@ msgstr "マスタステータス" msgid "Slave status" msgstr "スレーブステータス" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "変数" @@ -7840,7 +7843,7 @@ msgstr "すべてのユーザ" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "テキスト入力項目の値を利用する" @@ -7873,10 +7876,10 @@ msgid "Generate Password" msgstr "パスワードを生成する" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7887,7 +7890,7 @@ msgstr "クエリの実行に失敗しました:『%s』" msgid "Sorry, we failed to restore the dropped event." msgstr "申し訳ありませんが、削除されたイベントの復元に失敗しました。" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "バックアップされていたクエリ:" @@ -7902,7 +7905,7 @@ msgstr "イベント %1$s を変更しました。" msgid "Event %1$s has been created." msgstr "イベント %1$s を作成しました。" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "リクエストの処理中に 1 つ以上のエラーが発生しました:" @@ -7911,14 +7914,14 @@ msgstr "リクエストの処理中に 1 つ以上のエラーが発生しま msgid "Edit event" msgstr "イベントを編集する" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "要求処理中でのエラー" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "詳細" @@ -7931,7 +7934,7 @@ msgstr "イベント名" msgid "Event type" msgstr "イベント種別" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "%s に変更する" @@ -7958,13 +7961,13 @@ msgstr "終了" msgid "On completion preserve" msgstr "完了後もイベントを残す" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "定義者" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "定義者の指定は「ユーザ名@ホスト名」の形式でなければなりません。" @@ -7989,7 +7992,7 @@ msgstr "有効な種別イベントを指定してください。" msgid "You must provide an event definition." msgstr "イベントの定義は必須です。" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "新規作成" @@ -8009,7 +8012,7 @@ msgstr "イベントスケジュールの状態" msgid "Returns" msgstr "返り値" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8021,89 +8024,89 @@ msgstr "" "敗する可能性があります![/strong] 問題を回避するためには、改良された" "「mysqli」拡張を使用するようにしてください。" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "ルーチンタイプが不正です: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "申し訳ありませんが、削除されたルーチンの復元に失敗しました。" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "ルーチン %1$s を変更しました。" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "ルーチン %1$s を作成しました。" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "ルーチンを編集する" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "ルーチン名" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "パラメータ" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "入出力" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "長さ/値" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "パラメータを追加する" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "最後のパラメータを削除する" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "返り値の種類" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "返り値の長さ/値" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "返り値のオプション" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "DETERMINISTIC" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "SQL SECURITY" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "データ干渉方式" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "ルーチン名は必須です" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "パラメータに対して不正な入出力「%s」が与えられています。" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8111,36 +8114,36 @@ msgstr "" "ルーチンパラメータが ENUM、SET、VARCHAR、VARBINARY の場合、長さ/値は必須で" "す。" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "ルーチンの各パラメータに対して、名前とデータ型は必須です。" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "ルーチンに対して、有効な返り値の種類を指定してください。" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "ルーチンの定義は必須です。" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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 行の変更を行いました" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "ルーチン %s の実行結果" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "ルーチンを実行する" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "ルーチンのパラメータ" @@ -8423,7 +8426,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "言語ファイルが登録されていません: %1$s。" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "カレントサーバ" @@ -8454,50 +8457,50 @@ msgstr "対象先のデータベース" msgid "Click to select" msgstr "クリックで選択" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "サーバ %s 上でクエリを実行する" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "データベース %s 上でクエリを実行する" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "クリア" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "カラム" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "同名のブックマークは差し替える" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "別ウインドウからのクエリの上書きを禁止する" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "デリミタ" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "実行したクエリをここに表示する" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "表示のみ" @@ -8598,7 +8601,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "インデックス" @@ -8648,12 +8651,12 @@ msgid "As defined:" msgstr "ユーザ定義:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "主" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "全文" @@ -8666,12 +8669,12 @@ msgstr "最初へ" msgid "after %s" msgstr "%s の後へ" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "%s 個のカラムを追加する" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "最低ひとつはカラムを追加してください。" @@ -8726,7 +8729,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "この画像をダウンロードするためのリンクを表示します。" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8899,8 +8902,8 @@ msgid "Protocol version" msgstr "プロトコルバージョン" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "ユーザ" @@ -9035,15 +9038,15 @@ msgstr "" "Suhosin が稼働しているため問題が発生する可能性があります。詳しくは%sドキュメ" "ント%sをご覧ください。" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "データベースが存在しません" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "データベース名を絞る" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "テーブル名を絞る" @@ -9064,7 +9067,7 @@ msgstr "左側のメニューを表示する/隠す" msgid "Save position" msgstr "位置を保存" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "リレーションを作成" @@ -9124,37 +9127,37 @@ msgstr "リレーションのないテーブルを隠す/表示" msgid "Number of tables" msgstr "テーブル数" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "リレーションを削除" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "リレーション演算子" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "以外" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "サブクエリ" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "変更後の名称" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "新しい名前" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "集計" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "アクティブオプション" @@ -9322,13 +9325,13 @@ msgstr "表示するバイナリログを選択してください" msgid "Files" msgstr "ファイル" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "クエリの表示を切り詰める" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "クエリ全体を表示" @@ -9344,7 +9347,7 @@ msgstr "位置" msgid "Original position" msgstr "元の位置" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "情報" @@ -9371,11 +9374,11 @@ msgstr "マスタレプリケーション" msgid "Slave replication" msgstr "スレーブレプリケーション" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "統計を有効にする" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9619,7 +9622,7 @@ msgid "None" msgstr "なし" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "テーブル固有の特権" @@ -9636,7 +9639,7 @@ msgstr "管理" msgid "Global privileges" msgstr "グローバル特権" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "データベースに固有の特権" @@ -9656,7 +9659,7 @@ msgstr "ログイン情報" msgid "Do not change the password" msgstr "パスワードは変更しない" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "ユーザが存在しません。" @@ -9705,7 +9708,7 @@ msgstr "選択されたユーザは正常に削除されました。" msgid "The privileges were reloaded successfully." msgstr "特権を正常に再読み込みしました。" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "特権を編集" @@ -9718,7 +9721,7 @@ msgid "Export all" msgstr "すべてエクスポート" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "すべて" @@ -9735,121 +9738,121 @@ msgstr "%s に対する特権" msgid "Users overview" msgstr "ユーザ概略" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "権限委譲" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "選択したユーザを削除する" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "特権をすべて取り消してユーザを削除する" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 が利用しているテーブルの内容とサーバの" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません。" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "このカラムに固有の特権" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "データベースに特権を追加" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "_ や % というワイルドカードを文字として使用するときは \\ でエスケープしてくだ" "さい。" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "テーブルに特権を追加" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "ログイン情報の変更 / ユーザの複製" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "同じ特権を持つ新しいユーザを作る" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "元のユーザも残す" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "ユーザ専用データベース" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "同名のデータベースを作成してすべての特権を与える" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "データベース "%s" への全ての特権を与える" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr ""%s" にアクセスできるユーザ" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "グローバル" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "データベース固有" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "ワイルドカード" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "ビュー %s を破棄しました。" @@ -10136,23 +10139,23 @@ msgstr "警告値のみ表示する" msgid "Filter by category..." msgstr "種別による絞り込み..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "生の値 (書式化なし) で表示する" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "関連リンク:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "事象の解析をする" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "アドバイザの利用にあたって" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10160,7 +10163,7 @@ msgstr "" "アドバイザ・システムは、サーバの状態変数を分析することにより、ふさわしいと思" "われるサーバ変数の調整方法を提供するものです。" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10169,7 +10172,7 @@ msgstr "" "このシステムは、単純な計算を基にして経験則によって調整方法を提供するため、お" "使いのシステムに必ずしも当てはまるものではないことに注意してください。" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10179,7 +10182,7 @@ msgstr "" "を確認しておいてください。間違ったチューニングは、パフォーマンスに非常に悪影" "響を与える可能性があります。" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10190,31 +10193,31 @@ msgstr "" "変更した箇所を元に戻します。" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "起動以後の問い合わせ数:%s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "ステートメント" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "クエリ数" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "起動以後のネットワークトラフィック:%s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "この MySQL サーバの稼働時間: %1$s (起動時刻: %2$s)" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10222,19 +10225,19 @@ msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタス" "レーブとして動作しています。" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタとして動作" "しています。" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのスレーブとして動" "作しています。" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10242,11 +10245,11 @@ msgstr "" "サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "レプリケーションステータス" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10254,45 +10257,45 @@ msgstr "" "処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" "が報告してくる統計は不正確なことがあります。" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "受信済" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "送信済" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "最大同時接続数" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "失敗回数" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "中断" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "コマンド" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL サーバへの接続を試みて失敗した回数。" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10301,16 +10304,16 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数。" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数。" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL サーバへの接続試行回数 (成否に関わらず)。" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10321,24 +10324,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数。" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数。" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数。" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10346,23 +10349,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます。" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数。" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数。" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数。" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数。" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10372,7 +10375,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です。" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10382,7 +10385,7 @@ msgstr "" "もインデックスの全スキャンを実行しているものと思われます。例えば SELECT col1 " "FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)。" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10390,7 +10393,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます。" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10400,7 +10403,7 @@ msgstr "" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加しま" "す。" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10408,7 +10411,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY ... DESC の最適化に利用されます。" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10420,7 +10423,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります。" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10431,36 +10434,36 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します。" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数。" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数。" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数。" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)。" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数。" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数。" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "空きページ数。" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10470,7 +10473,7 @@ msgstr "" "るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" "たりできなくなっているページの数です。" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10482,11 +10485,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" "算できます。" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計。" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10494,7 +10497,7 @@ msgstr "" "InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" "ダムな順番でスキャンするときに発生します。" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10502,11 +10505,11 @@ msgstr "" "InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" "なテーブル全スキャンを行うときに発生します。" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数。" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10514,7 +10517,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数。" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10528,51 +10531,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです。" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数。" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数。" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数。" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数。" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数。" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)。" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "データ読み込み回数の合計。" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "データ書き込み回数の合計。" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)。" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10580,35 +10583,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数。" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数。" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数。" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数。" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数。" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数。" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数。" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "作成されたページ数。" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10616,51 +10619,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます。" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "読み込んだページ数。" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "書き込んだページ数。" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数。" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した平均時間 (単位:ミリ秒)。" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)。" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)。" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数。" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数。" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数。" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数。" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数。" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10668,7 +10671,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした。" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10676,7 +10679,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます。" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10685,15 +10688,15 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です。" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "使われているキーキャッシュの比率 (計算値)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数。" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10703,7 +10706,7 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます。" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10711,20 +10714,20 @@ msgstr "" "キーキャッシュミスの割合。読み込みリクエストに対する物理読み込みで算出。(計算" "値)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数。" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数。" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "書き込みリクエストに対する物理書き込みの比率 (計算値)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10734,17 +10737,17 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です。" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "サーバが起動してからの同時接続の最大数。" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数。" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10752,19 +10755,19 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます。" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "開いているファイルの数。" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)。" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "開いているテーブルの数。" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10774,19 +10777,19 @@ msgstr "" "ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され" "るかもしれません。" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量。" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "キャッシュのヒット数。" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数。" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10798,7 +10801,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する (LRU) 戦略に従っ" "て削除するクエリを決めます。" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10806,19 +10809,19 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数。" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数。" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数。" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)。" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10826,11 +10829,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください。" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数。" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10838,7 +10841,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10846,15 +10849,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルを全スキャンした結合の数。" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数。" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10862,23 +10865,23 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)。" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスタに接続するスレーブである場合は ON になります。" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数。" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数。" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10887,23 +10890,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう。" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数。" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "ソート済の行数。" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数。" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数。" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10914,7 +10917,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください。" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -10924,11 +10927,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください。" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "現在開いている接続の数。" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10939,47 +10942,47 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "スレッドキャッシュのヒット割合 (計算値)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数。" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "モニタ開始" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "使用方法/セットアップ" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "グラフの再配置/編集完了" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "グラフの追加" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "グラフの再配置/編集" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "再描画間隔" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "1 段のグラフ数" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "モニタ環境設定" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -10987,15 +10990,15 @@ msgstr "" "モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポー" "トできます。" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "デフォルトに戻す" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "モニタの使用方法" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11009,7 +11012,7 @@ msgstr "" "いずれかを有効にする必要があります。なお、general_log は大量のデータを生成" "し、サーバの負荷を 15% 増加させますので、注意するようにしてください。" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11021,11 +11024,11 @@ msgstr "" "グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ" "タ機能は使用することができます。" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "モニタの使い方:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11035,7 +11038,7 @@ msgstr "" "のところよりグラフを追加や再描画間隔の変更することができ、それぞれのグラフに" "ある歯車のアイコンを通じて削除が行えます。" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11048,11 +11051,11 @@ msgstr "" "れ表示されますので、実行されたクエリを確認することができます。SELECT 文の部分" "をクリックすることで、更なるクエリ解析が可能です。" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "注意事項:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11065,85 +11068,85 @@ msgstr "" "うにし、それ以上必要がないのであれば、general_log を無効にして一般クエリログ" "テーブルを空にしておくのが望ましいです。" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "プリセットグラフ" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "状態変数" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "系列の選択:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "一般的なモニタ対象" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "もしくは対象変数名:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "差分値として表示する" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "除数を適用する" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "データ値に単位を追加する" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "この系列を追加する" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "系列をクリアする" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "グラフの系列:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "ログの統計" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "選択期間:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "ログの統計元を選択することができます。" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "結果はクエリ文でグループ化されます。" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "クエリの解析" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 秒" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11550,11 +11553,10 @@ 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:312 #, php-format @@ -11920,35 +11922,35 @@ msgstr "参照整合性の確認:" msgid "Showing tables" msgstr "テーブルを表示しています" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "ディスク使用量" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "有効" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "行の統計" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "静的" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "動的" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "行の長さ" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "行のサイズ" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "次の自動付番" @@ -11974,7 +11976,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "外部キー制約" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "空間" @@ -12024,49 +12026,49 @@ msgstr "%s にインデックスを追加しました" msgid "Show more actions" msgstr "他の操作を表示します" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "カラムを移動させる" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "ドラックして上下させ、カラムを移動させてください。" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "ビューを編集する" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "リレーションビュー" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "テーブル構造を確認する" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "カラムを追加する" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "テーブルの末尾" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "テーブルの先頭" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "指定カラムの後に %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "%s つのカラムにインデックスを作成する" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "パーティション有り" @@ -12610,8 +12612,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "クエリキャッシュの総量に対するクエリキャッシュの空きメモリの割合は、%s%% で" "す。この値は、80%% 以上がいいと言われています。" @@ -12764,8 +12766,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "全ソートの内 %s%% が一時テーブルを使用しています。この値は、10%% 未満がいいと" "言われています。" @@ -13299,8 +13301,8 @@ msgstr "" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" -"Max_used_connections は max_connections の %s%% になっています。この値は、" -"80%% 未満がいいと言われています。" +"Max_used_connections は max_connections の %s%% になっています。この値は、80%" +"% 未満がいいと言われています。" #: libraries/advisory_rules.txt:392 msgid "Percentage of aborted connections" @@ -13520,10 +13522,10 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" -"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが " -"60%% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを" -"使用していない、もしくは同マシン上で他のサービスを稼動させていないのであれ" -"ば、ご使用のシステムではこの設定で十分かもしれません。" +"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが 60%" +"% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを使" +"用していない、もしくは同マシン上で他のサービスを稼動させていないのであれば、" +"ご使用のシステムではこの設定で十分かもしれません。" #: libraries/advisory_rules.txt:452 msgid "MyISAM concurrent inserts" diff --git a/po/ka.po b/po/ka.po index 31544ebefa..189228e72e 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:15+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: georgian \n" -"Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" @@ -35,53 +35,54 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "ძებნა" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "გადასვლა" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "აღწერილობა" @@ -114,13 +115,13 @@ msgstr "კომენტარი მონაცემთა ბაზაშ msgid "Table comments" msgstr "ცხრილის კომენტარები" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -129,30 +130,30 @@ msgstr "ცხრილის კომენტარები" msgid "Column" msgstr "სვეტები" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "ტიპი" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -190,8 +191,8 @@ msgstr "Links to" msgid "Comments" msgstr "კომენტარები" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -200,15 +201,15 @@ msgstr "კომენტარები" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "არა" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -223,8 +224,8 @@ msgstr "არა" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -239,11 +240,11 @@ msgstr "" msgid "No tables found in database." msgstr "" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "ყველას მონიშნვა" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "მონიშნვის მოხსნა" @@ -321,12 +322,12 @@ msgstr "" msgid "Switch to copied database" msgstr "" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "კოლაცია" @@ -347,17 +348,17 @@ msgstr "" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "ცხრილი" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "სტრიქონები" @@ -372,21 +373,21 @@ msgstr "in use" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "შეიქმნა" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "უკანასკნელი განახლება" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Last check" @@ -448,7 +449,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ან" @@ -491,59 +492,28 @@ msgstr "მოთხოვნის გაგზავნა" msgid "Access denied" msgstr "მიუწვდომელია" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "ერთი სიტყვა მაინც" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "ყველა სიტყვა" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "ზუსტი ფრაზა" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "რეგულარული გამოსახულება" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s match(es) inside table %s" -msgstr[1] "%s match(es) inside table %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "არჩევა" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "წაშლა" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -551,31 +521,62 @@ msgid_plural "Total: %s matches" msgstr[0] "Total: %s match(es)" msgstr[1] "Total: %s match(es)" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s match(es) inside table %s" +msgstr[1] "%s match(es) inside table %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "არჩევა" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "წაშლა" + +#: db_search.php:362 msgid "Search in database" msgstr "მონაცემთა ბაზაში ძებნა" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "ძებნა:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "ცხრილ(ებ)ში:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "სვეტში:" @@ -616,8 +617,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -625,7 +626,7 @@ msgstr "" msgid "View" msgstr "ხედო" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -635,97 +636,93 @@ msgstr "რეპლიკაცია" msgid "Sum" msgstr "ჯამი" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "ყველას შემოწმება" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "მონიშნვის მოხსნა ყველასთვის" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ექსპორტი" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "ცარიელი" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Drop" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "ცხრილის შემოწმება" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "ცხრილის ოპტიმიზება" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "ცხრილის აღდგენა" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "პრეფიქსის დამატება მაგიდისათვის" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Replace table data with file" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "მონაცემების ლექსიკონი" @@ -738,9 +735,9 @@ msgstr "ნანახი ცხრილები" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "მონაცემთა ბაზა" @@ -758,17 +755,17 @@ msgstr "შეიქმნა" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "სტატუსი" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "მოქმედება" @@ -800,7 +797,7 @@ msgstr "სნეიფშუთის სტრუქტურა" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "ცხრილის შემოწმება" @@ -938,8 +935,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1002,13 +999,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "უკან" @@ -1104,8 +1101,8 @@ msgstr "პაროლის ველი ცარიელია!" msgid "The passwords aren't the same!" msgstr "პაროლებში შეუსაბამობაა!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "მომხმარებლის დამატება" @@ -1127,7 +1124,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1154,13 +1151,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "სულ" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1192,7 +1189,7 @@ msgstr "სერვერის არჩევა" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "პროცესები" @@ -1264,13 +1261,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1332,7 +1329,7 @@ msgstr "" msgid "Bytes received" msgstr "მიღებულია" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "კავშირები" @@ -1373,11 +1370,11 @@ msgstr "%s table(s)" msgid "Questions" msgstr "სპარსული" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "ტრაფიკი" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1406,8 +1403,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "არაა" @@ -1507,7 +1504,7 @@ msgstr "Other core settings" msgid "Current settings" msgstr "Other core settings" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1598,7 +1595,7 @@ msgstr "SQL-ის ახსნა" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "დრო" @@ -1708,10 +1705,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "შემოტანა" @@ -1769,9 +1766,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "გაუქმება" @@ -1803,9 +1800,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1913,7 +1910,7 @@ msgstr "%s-ის წაშლა" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1957,8 +1954,8 @@ msgstr "SQL Query box" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "შეცვლა" @@ -1975,7 +1972,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2552,16 +2549,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "წამში" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "წუთში" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "საათში" @@ -2679,8 +2676,8 @@ msgstr "Sort by key" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "პარამეტრები" @@ -2741,7 +2738,7 @@ msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Kill" @@ -2770,30 +2767,30 @@ msgstr "სულ" msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Create relation" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" @@ -2862,55 +2859,55 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "ინდექსი არაა განსაზღვრული!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "ინდექსები" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "უნიკალური" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "შეკუმშული" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "კომენტარი" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "მონაცემთა ბაზები" @@ -2920,7 +2917,7 @@ msgstr "მონაცემთა ბაზები" msgid "Server" msgstr "სერვერი" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2933,104 +2930,104 @@ msgstr "სერვერი" msgid "Structure" msgstr "სტრუქტურა" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "ჩასმა" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "მოქმედებები" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "ტრიგერები" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "როგორც ჩანს ცხრილი ცარიელია!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "მოთხოვნა" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "პრივილეგიები" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routines" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "მოვლენები" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "შემქნელი" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "მომხმარებელი" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "ბინარული ჟურნალი" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "ცვლადები" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "სიმბოლოთა ნაკრებები" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "ძრავები" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "შეცდომა" @@ -3083,73 +3080,73 @@ msgstr "ცხრილების დათვლა" msgid "There are no recent tables" msgstr "There are no configured servers" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s ხელმისაწვდომია ამ MySQL სერვერზე." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s გათიშულია ამ MySQL სერვერზე." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Show slave status" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "არასწორი მონაცემთა ბაზა" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "ცხრილის არასწორი სახელი" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Table %s has been renamed to %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3157,22 +3154,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "ფუნქცია" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "ოპერატორი" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "მნიშვნელობა" @@ -3182,7 +3179,7 @@ msgstr "მნიშვნელობა" msgid "Table Search" msgstr "ძებნა" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3322,14 +3319,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3585,8 +3582,8 @@ msgstr "მოგესალმებათ %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3695,12 +3692,12 @@ msgstr "ცხრილები" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "მონაცემები" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Overhead" @@ -3815,18 +3812,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL მოთხოვნა" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3920,7 +3917,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3931,8 +3928,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -4128,7 +4125,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4423,7 +4420,7 @@ msgid "Character set of the file" msgstr "სომბოლოთა ნაკრები ფაილისათვის" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "ფორმატი" @@ -4740,7 +4737,7 @@ msgstr "ნავიგაციის ჩარჩო" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "სერვერები" @@ -6085,7 +6082,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "SQL Query box" msgid "Retain query box" @@ -6410,7 +6407,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6418,17 +6415,17 @@ msgid "" "configured)." msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "სერვერი არ პასუხობს" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "დეტალები..." @@ -6487,8 +6484,8 @@ msgstr "ცხრილის შექმნა" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "სახელი" @@ -6611,23 +6608,23 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." 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 "" "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." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "სიმბოლოთა ნაკრები ფაილისთვის:" @@ -7120,8 +7117,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7197,7 +7194,7 @@ msgstr "მოვლენა" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7274,7 +7271,7 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "ჰოსტი" @@ -7482,8 +7479,8 @@ msgstr "Export defaults" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7656,79 +7653,79 @@ msgstr "SQL compatibility mode" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "დამალვა" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "ბინარული" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Because of its length,
    this field might not be editable " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Restart insertion with %s rows" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "და შემდეგ" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" @@ -7756,7 +7753,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Submit" @@ -7776,7 +7773,7 @@ msgstr "ახალი ველის დამატება" msgid "Do you really want to execute the following query?" msgstr "ნამდვილად გსურთ " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "ცვლილების გარეშე" @@ -8031,7 +8028,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -8080,6 +8077,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "მონიშნვის მოხსნა ყველასთვის" + #: libraries/replication_gui.lib.php:54 #, fuzzy msgid "Slave configuration" @@ -8118,8 +8119,8 @@ msgstr "Show slave status" msgid "Slave status" msgstr "Show slave status" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "ცვლადი" @@ -8144,7 +8145,7 @@ msgstr "ნებისმიერი მომხმარებელი" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" @@ -8175,10 +8176,10 @@ msgid "Generate Password" msgstr "პაროლის დაგენერირება" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8189,7 +8190,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8206,7 +8207,7 @@ msgstr "Table %s has been dropped" msgid "Event %1$s has been created." msgstr "Table %1$s has been created." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8217,16 +8218,16 @@ msgstr "" msgid "Edit event" msgstr "სერვერის რედაქტირება" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "პროცესები" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -8243,7 +8244,7 @@ msgstr "მოვლენის ტიპი" msgid "Event type" msgstr "მოვლენის ტიპი" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8279,13 +8280,13 @@ msgstr "დასასრული" msgid "On completion preserve" msgstr "სრული ჩასმები" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8310,7 +8311,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8332,7 +8333,7 @@ msgstr "" msgid "Returns" msgstr "Return type" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8340,144 +8341,144 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Invalid server index: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Table %1$s has been created." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "რედაქტირების რეჟიმი" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Routines" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "პირდაპირი ბმულები" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "ახალი ველის დამატება" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Rename database to" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Return type" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "ცხრილის პარამეტრები" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "უსაფრთხოება" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8813,7 +8814,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "უცნობი ენა: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8849,52 +8850,52 @@ msgstr "მონაცემთა ბაზაში ძებნა" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "გაწმენდა" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "გამყოფი" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "View only" @@ -8987,7 +8988,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "ინდექსი" @@ -9036,12 +9037,12 @@ msgid "As defined:" msgstr "As defined:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "პირველადი" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fulltext" @@ -9055,13 +9056,13 @@ msgstr "" msgid "after %s" msgstr "After %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ველის დამატება" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9118,7 +9119,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9336,8 +9337,8 @@ msgid "Protocol version" msgstr "ოქმის ვერსია" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "მომხმარებელი" @@ -9476,17 +9477,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "მონაცემთა ბაზები არაა" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "ცხრილის სახელი" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9511,7 +9512,7 @@ msgstr "" msgid "Save position" msgstr "მდებარეობის შენახვა" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9575,48 +9576,48 @@ msgstr "" msgid "Number of tables" msgstr "ცხრილების რაოდენობა" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relation deleted" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "ექსპორტი" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "მოთხოვნაში" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Rename table to" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "მომხმარებლის სახელი" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "შექმნა" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9801,13 +9802,13 @@ msgstr "აირჩიეთ საჩვენებელი ორობი msgid "Files" msgstr "ფაილები" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9823,7 +9824,7 @@ msgstr "მდებარეობა" msgid "Original position" msgstr "საწყისი მდებარეობა" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "ინფორმაცია" @@ -9853,11 +9854,11 @@ msgstr "სერვერის კონფიგურაცია" msgid "Slave replication" msgstr "სერვერის კონფიგურაცია" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "სტატისტიკის ჩართვა" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10100,7 +10101,7 @@ msgid "None" msgstr "არაა" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -10117,7 +10118,7 @@ msgstr "ადმინისტრირება" msgid "Global privileges" msgstr "გლობალური პრივილეგიები" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -10137,7 +10138,7 @@ msgstr "" msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10188,7 +10189,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "პრივილეგიების რედაქტირება" @@ -10203,7 +10204,7 @@ msgid "Export all" msgstr "ექსპორტი" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "ნებისმიერი" @@ -10225,75 +10226,75 @@ msgstr "პრივილეგიები" msgid "Users overview" msgstr "მომხმარებლის მიმოხილვა" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... ძველის შენახვა." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10301,42 +10302,42 @@ msgstr "" " ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "გლობალულრი" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10619,50 +10620,50 @@ msgstr "Show open tables" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Show open tables" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "მოთხოვნის ტიპი" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "ინფორმაცია" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10670,120 +10671,120 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Customize startup page" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "რეპლიკაცია" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "მიღებულია" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "გაიგზავნა" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "შეწყვეტილია" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "ბრძანება" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10791,78 +10792,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10870,7 +10871,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10878,42 +10879,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10921,33 +10922,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10956,244 +10957,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "შემოტანილი ფაილების ფორმატი" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11201,99 +11202,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11301,18 +11302,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11320,73 +11321,73 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Key cache" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Startup" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "ახალი ველის დამატება" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "განახლება" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea columns" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restore default value" -#: server_status.php:1631 +#: server_status.php:1640 #, fuzzy msgid "Monitor Instructions" msgstr "ინფორმაცია" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11395,7 +11396,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11403,18 +11404,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11422,11 +11423,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11434,95 +11435,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Rename database to" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "ცხრილების არჩევა" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "ცხრილის არასწორი სახელი" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "ახალი სერვერის დამატება" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL მოთხოვნები" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "სტატისტიკის ჩევნება" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "ყველას მონიშნვა" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "მოთხოვნის ტიპი" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11530,7 +11531,7 @@ msgid_plural "%d seconds" msgstr[0] "წამში" msgstr[1] "წამში" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12396,35 +12397,35 @@ msgstr "" msgid "Showing tables" msgstr "ცხრილების ჩვენება" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "ადგილის გამოყენება" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "ეფექტური" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "სტატიკური" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "დინამიური" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "სტრიქონის სიგრძე" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "სტრიქონის ზომა" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12451,7 +12452,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Foreign key limit" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12508,56 +12509,56 @@ msgstr "" msgid "Show more actions" msgstr "PHP-ის ინფორმაციის ჩვენება" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "%s ველის დამატება" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "ხედის ამობეჭდვა" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "ცხრილის სტრუქტურის შეთავაზება" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s ველის დამატება" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "ცხრილის ბოლოშო" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "ცხრილის დასაწყისში" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "დაყოფილი" @@ -13085,8 +13086,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13220,8 +13221,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/kk.po b/po/kk.po index 3a03a997c6..b274a6a156 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-01 09:41+0200\n" "Last-Translator: Berikbol Zharylkassyn \n" "Language-Team: none\n" -"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" @@ -42,53 +42,54 @@ msgstr "" "немесе сіздің браузеріңіз екі бет арасындағы жаңартылуды өзінің баптауында, " "қауіпсіздік үшін бұғаттап тастауда." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Іздеу" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Өту" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Индекс атауы" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Сипаттама" @@ -121,13 +122,13 @@ msgstr "Дерекқорына түсініктеме: " msgid "Table comments" msgstr "Кестеге түсініктеме:" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -136,30 +137,30 @@ msgstr "Кестеге түсініктеме:" msgid "Column" msgstr "Бағана" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Типі" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -197,8 +198,8 @@ msgstr "Сілтемелер" msgid "Comments" msgstr "Түсініктеме" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -207,15 +208,15 @@ msgstr "Түсініктеме" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Жоқ" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -230,8 +231,8 @@ msgstr "Жоқ" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -246,11 +247,11 @@ msgstr "Мәліметтер қорының дамп (схемасын) көру msgid "No tables found in database." msgstr "Дерекқорында, ешбір кестелер табылмады." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Барлығын ерекшелеу" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Eрекшеленгендерді алып тастау" @@ -325,12 +326,12 @@ msgstr "Шектеу қою" msgid "Switch to copied database" msgstr "Көшірілген дерекқорына өту" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Салыстыру" @@ -353,17 +354,17 @@ msgstr "Байланыс схемасын түзету немесе экспор #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Кесте" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Қатарлар" @@ -378,21 +379,21 @@ msgstr "қолданыста" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Құру" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Соңғы жаңартылым" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Соңғы тексерім" @@ -455,7 +456,7 @@ msgid "Del" msgstr "Өшіру" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Немесе" @@ -496,85 +497,87 @@ msgstr "Сұранысты жіберу" msgid "Access denied" msgstr "Рұқсат жоқ" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "кез-келген сөз" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "барлық сөздер" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "дәл сәйкестiк" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "жүйелі түрде айтылу" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s іздеу нәтижесі:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s кестедегi сәйкестiк %2$s" -msgstr[1] "%1$s кестедегi сәйкестiктер %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Шолу" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Кесте %s үшін сәйкестіктерді өшіреміз бе?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Жою" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Барлығы: %s сәйкестік" msgstr[1] "Барлығы: %s сәйкестіктер" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s кестедегi сәйкестiк %2$s" +msgstr[1] "%1$s кестедегi сәйкестiктер %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Шолу" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Кесте %s үшін сәйкестіктерді өшіреміз бе?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Жою" + +#: db_search.php:362 msgid "Search in database" msgstr "Дерекқорынан іздеу" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Іздеу үшін сөз немесе мағына (топтық таңба \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Сайт бойынша іздеу:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Сөз, бос орынмен бөлінеді (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Кесте бойынша:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Бағана бойынша" @@ -613,8 +616,8 @@ msgstr "Бақылауды белсендендірілу" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -622,7 +625,7 @@ msgstr "" msgid "View" msgstr "Түр" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -632,93 +635,89 @@ msgstr "Репликация" msgid "Sum" msgstr "Барлығы" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, fuzzy, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - келісім бойынша орнатылған MySQL серверінің кесте типі" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Белгi соғылғандарды:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Барлығын белгілеу" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Барлық белгілерді алып тастау" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Ықшамдауды қажет ететіндерді белгілеу" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Баспаға шығару түрі" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Тазарту" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Жою" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Кестені тексеру" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Кестені тиімді ету" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Кестені калпына келтіру" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Кестенiң талдауы" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Кестеге префикс қосу" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Кестениң префиксін ауыстыру" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Кестені префикс пен бірге көшіру" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Мәлiметтердiң сөздiгi" @@ -731,9 +730,9 @@ msgstr "Қадағаланатын кестелер" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Дерекқор" @@ -750,17 +749,17 @@ msgstr "Құрылған" msgid "Updated" msgstr "Жаңартылған" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Күй" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Әрекет" @@ -792,7 +791,7 @@ msgstr "Құрылым түсірілімі" msgid "Untracked tables" msgstr "Бақылауға болмайтын кестелер" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Кестені бақылау" @@ -929,8 +928,8 @@ msgstr "" #: import.php:86 #, 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 сипатталған." @@ -995,13 +994,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL-сұранысы сәтті орындалды" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Артқа" @@ -1089,8 +1088,8 @@ msgstr "Құпия сөз бос тұр!" msgid "The passwords aren't the same!" msgstr "Құпия сөздер бір-біріне ұқсамайды!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Қолданушыны қосу" @@ -1108,7 +1107,7 @@ msgid "Close" msgstr "Жабу" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1135,13 +1134,13 @@ msgstr "Статикалық мәлiметтер" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Барлығы" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Басқа" @@ -1172,7 +1171,7 @@ msgstr "Сервер трафигі (KiB)" msgid "Connections since last refresh" msgstr "Соңғы жаңартылған сәттен бастап қосылыстар." -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Процесстер" @@ -1232,13 +1231,13 @@ msgstr "Үстемелеу жүйесі" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "КБ" @@ -1291,7 +1290,7 @@ msgstr "" msgid "Bytes received" msgstr "Байт қабылданды" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1330,11 +1329,11 @@ msgstr "%d Кесте(лер)" msgid "Questions" msgstr "Сұрақтар" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Баптау" @@ -1357,8 +1356,8 @@ msgstr "Тәңiр жарылқасын, ең болмаса топтамаға #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Жоқ" @@ -1451,7 +1450,7 @@ msgstr "Баптауын өзгерту" msgid "Current settings" msgstr "Ағымдағы баптау" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "График тақырыбы" @@ -1529,7 +1528,7 @@ msgstr "" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Уақыт" @@ -1617,10 +1616,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1668,9 +1667,9 @@ msgstr "Қолданған айнымалы / формула" msgid "Test" msgstr "Тест" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1698,9 +1697,9 @@ msgstr "Бағананың жойылуы" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Жарайды" @@ -1776,7 +1775,7 @@ msgstr "Жою" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1815,8 +1814,8 @@ msgstr "Сұраныс өрісін көрсету" msgid "No rows selected" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Өзгерту" @@ -1831,7 +1830,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2320,16 +2319,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "секундке" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "Минутқа" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "сағатқа" @@ -2429,8 +2428,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2483,7 +2482,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2510,27 +2509,27 @@ msgstr "" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2599,55 +2598,55 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Индексі анықталмаған!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индекстер" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Бірегей" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Қапталған" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Пікірлеу" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s жойылған болатын" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Дерекқоры" @@ -2657,7 +2656,7 @@ msgstr "Дерекқоры" msgid "Server" msgstr "" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2670,102 +2669,102 @@ msgstr "" msgid "Structure" msgstr "" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Қате" @@ -2807,70 +2806,70 @@ msgstr "" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2878,22 +2877,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -2901,7 +2900,7 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "" @@ -3027,14 +3026,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3286,8 +3285,8 @@ msgstr "%s-ге қош келдіңіз" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3394,12 +3393,12 @@ msgstr "" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "" @@ -3506,18 +3505,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "kk" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3605,7 +3604,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3615,8 +3614,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -3800,7 +3799,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4067,7 +4066,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "" @@ -4363,7 +4362,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5570,7 +5569,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "" @@ -5876,21 +5875,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -5945,8 +5944,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6046,8 +6045,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:285 @@ -6055,7 +6054,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6514,8 +6513,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6575,7 +6574,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6636,7 +6635,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -6830,8 +6829,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6993,75 +6992,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7085,7 +7084,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7101,7 +7100,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7351,7 +7350,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7398,6 +7397,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Барлық белгілерді алып тастау" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7432,8 +7435,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7458,7 +7461,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7489,10 +7492,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7503,7 +7506,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7518,7 +7521,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7527,14 +7530,14 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7547,7 +7550,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "" @@ -7574,13 +7577,13 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7605,7 +7608,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7625,7 +7628,7 @@ msgstr "" msgid "Returns" msgstr "" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7633,125 +7636,125 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8032,7 +8035,7 @@ msgstr "" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8063,50 +8066,50 @@ msgstr "" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8189,7 +8192,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8235,12 +8238,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8253,12 +8256,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "" @@ -8303,7 +8306,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8441,8 +8444,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -8550,15 +8553,15 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "" @@ -8579,7 +8582,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -8639,37 +8642,37 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "" @@ -8829,13 +8832,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -8851,7 +8854,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -8879,11 +8882,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9121,7 +9124,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9138,7 +9141,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9158,7 +9161,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9207,7 +9210,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9220,7 +9223,7 @@ msgid "Export all" msgstr "" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9237,115 +9240,115 @@ msgstr "" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "" @@ -9612,43 +9615,43 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9656,115 +9659,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9772,78 +9775,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9851,7 +9854,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9859,42 +9862,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9902,33 +9905,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9937,242 +9940,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10180,99 +10183,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10280,18 +10283,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10299,61 +10302,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10362,7 +10365,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10370,18 +10373,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10389,11 +10392,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10401,86 +10404,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11200,35 +11203,35 @@ msgstr "" msgid "Showing tables" msgstr "" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11251,7 +11254,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11303,50 +11306,50 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy msgid "Move columns" msgstr "Бағана іші" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -11858,8 +11861,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -11984,8 +11987,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ko.po b/po/ko.po index 441b379581..3cb99c83fe 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" -"PO-Revision-Date: 2012-06-22 04:47+0200\n" -"Last-Translator: Hyun-Sung Yun \n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" +"PO-Revision-Date: 2012-06-25 10:59+0200\n" +"Last-Translator: Gyu-sun Youm \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: Weblate 1.0\n" @@ -37,53 +37,54 @@ msgstr "" "대상 브라우저 창을 업데이트할 수 없습니다. 부모 창을 닫았거나 브라우저의 보" "안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "검색" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "실행" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "키 이름" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "설명" @@ -108,7 +109,7 @@ msgstr "데이터베이스 %1$s가 생성되었습니다." #: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " -msgstr "데이터베이스 설명:" +msgstr "데이터베이스 설명: " #: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 #: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 @@ -116,13 +117,13 @@ msgstr "데이터베이스 설명:" msgid "Table comments" msgstr "테이블 설명" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "테이블 설명" msgid "Column" msgstr "컬럼명" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "종류" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "링크 대상:" msgid "Comments" msgstr "설명" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "설명" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" -msgstr "아니오 " +msgstr "아니오" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "아니오 " #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "데이터베이스의 덤프(스키마) 데이터 보기" msgid "No tables found in database." msgstr "데이터베이스에 테이블이 없습니다." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "모두 선택" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "모두 선택안함" @@ -320,12 +321,12 @@ msgstr "제약조건 추가" msgid "Switch to copied database" msgstr "복사한 테이블로 옮겨감" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "데이터정렬방식" @@ -348,17 +349,17 @@ msgstr "관계 스키마를 수정 또는 내보내기" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "테이블 " #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "행" @@ -373,21 +374,21 @@ msgstr "사용중" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "생성" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "마지막 업데이트" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "마지막 검사" @@ -449,7 +450,7 @@ msgid "Del" msgstr "삭제" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "또는" @@ -490,85 +491,85 @@ msgstr "질의 실행" msgid "Access denied" msgstr "접근이 거부되었습니다." -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "아무 단어나" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "모든 단어" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "정확한 문구" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "정규표현식" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\"의 검색 결과 %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "테이블 %s에서 %s 건 일치" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "보기" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "삭제" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "총: %s 건 일치" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "테이블 %s에서 %s 건 일치" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "보기" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "삭제" + +#: db_search.php:362 msgid "Search in database" msgstr "데이터베이스 검색" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "찾을 단어, 값 (와일드카드: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "찾는 방식:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "단어는 스페이스(\" \")로 구분됩니다." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "검색할 테이블:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "검색할 컬럼:" @@ -607,8 +608,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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를 참조해 주십시오." @@ -617,7 +618,7 @@ msgstr "" msgid "View" msgstr "뷰" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -627,93 +628,89 @@ msgstr "복제" msgid "Sum" msgstr "계" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "선택한 것을:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "모두 체크" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "모두 체크안함" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "오버헤드를 가진 테이블들을 체크" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "내보내기" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "비우기" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "삭제" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "테이블 검사" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "테이블 최적화" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "테이블 복구" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "테이블 분석" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "테이블에 접두사 추가" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "테이블의 접두사를 교체" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "테이블에 접두사를 추가하여 복제" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "데이터 사전 (전체 구조보기)" @@ -726,9 +723,9 @@ msgstr "추적된 테이블" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "데이터베이스" @@ -745,17 +742,17 @@ msgstr "생성됨" msgid "Updated" msgstr "수정됨" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "상태" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "실행" @@ -787,7 +784,7 @@ msgstr "구조 요약" msgid "Untracked tables" msgstr "추적되지 않은 테이블" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "테이블 추적" @@ -922,8 +919,8 @@ msgstr "" #: import.php:86 #, 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" "를 참조하여 주십시오." @@ -998,13 +995,13 @@ msgstr "" "는 이 가져오기를 마칠 수 없음을 뜻합니다." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "질의가 바르게 실행되었습니다." -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "뒤로" @@ -1089,8 +1086,8 @@ msgstr "암호가 없습니다!" msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "사용자 추가" @@ -1108,7 +1105,7 @@ msgid "Close" msgstr "닫기" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1135,13 +1132,13 @@ msgstr "정적 데이터" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "전체 쿼리수" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "기타" @@ -1171,7 +1168,7 @@ msgstr "서버 전송량(KiB)" msgid "Connections since last refresh" msgstr "마지막 새로고침 이후 연결 수" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "프로세스" @@ -1235,13 +1232,13 @@ msgstr "시스템 스왑" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1293,7 +1290,7 @@ msgstr "바이트 보냄" msgid "Bytes received" msgstr "바이트 받음" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "연결 수" @@ -1333,11 +1330,11 @@ msgstr "%d개 테이블 " msgid "Questions" msgstr "테이블 작업" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "소통량" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "설정" @@ -1360,8 +1357,8 @@ msgstr "최소 한개이상의 변수를 시리즈에 추가하십시오" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "없음" @@ -1457,7 +1454,7 @@ msgstr "설정 변경" msgid "Current settings" msgstr "현재 설정" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "차트 제목" @@ -1542,7 +1539,7 @@ msgstr "SQL 해석" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "시간" @@ -1637,10 +1634,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "가져오기" @@ -1692,9 +1689,9 @@ msgstr "사용된 변수 / 수식" msgid "Test" msgstr "테스트" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "취소" @@ -1722,9 +1719,9 @@ msgstr "열을 삭제하고 있습니다." msgid "Adding Primary Key" msgstr "기본 키를 추가하고 있습니다." -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "확인" @@ -1808,7 +1805,7 @@ msgstr "삭제중" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "저장 함수의 정의는 RETURN문을 포함해야 합니다!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET 수정" @@ -1847,8 +1844,8 @@ msgstr "질의 상자 보이기" msgid "No rows selected" msgstr "선택된 행이 없습니다." -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "변경" @@ -1863,7 +1860,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2380,16 +2377,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2492,8 +2489,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "옵션" @@ -2552,7 +2549,7 @@ msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Kill" @@ -2579,30 +2576,30 @@ msgstr "합계" msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "서버 버전" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2677,55 +2674,55 @@ msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." msgid "Javascript must be enabled past this point" msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "인덱스가 설정되지 않았습니다!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "인덱스" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "고유값" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "설명" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "기본 키를 제거했습니다" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "인덱스 %s 를 제거했습니다" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "데이터베이스 " @@ -2735,7 +2732,7 @@ msgstr "데이터베이스 " msgid "Server" msgstr "서버" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2748,105 +2745,105 @@ msgstr "서버" msgid "Structure" msgstr "구조" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "삽입" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "테이블 작업" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "질의 마법사" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "사용권한" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "사용자" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "바이너리" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "환경설정값" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "오류" @@ -2886,71 +2883,71 @@ msgstr "테이블이 없습니다" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "데이터베이스 검색" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "데이터베이스 검색" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "테이블 %s을(를) %s(으)로 이름을 변경하였습니다." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2958,23 +2955,23 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "함수" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "테이블 작업" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "값" @@ -2984,7 +2981,7 @@ msgstr "값" msgid "Table Search" msgstr "검색" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3119,14 +3116,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3384,8 +3381,8 @@ msgstr "%s에 오셨습니다" #: libraries/auth/config.auth.lib.php:98 #, 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$ssetup script%2$s 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -3497,12 +3494,12 @@ msgstr "테이블 수" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "데이터" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "부담" @@ -3617,18 +3614,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL 질의" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3716,7 +3713,7 @@ msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "업로드 파일:" @@ -3727,8 +3724,8 @@ msgstr "업로드 파일:" msgid "Select from the web server upload directory %s:" msgstr "웹서버 업로드 디렉토리" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" @@ -3923,7 +3920,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4198,7 +4195,7 @@ msgid "Character set of the file" msgstr "파일 문자셋" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "형식" @@ -4505,7 +4502,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5765,7 +5762,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL 질의" @@ -6088,23 +6085,23 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "서버 응답이 없습니다" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6162,8 +6159,8 @@ msgstr "새 페이지 만들기" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "이름" @@ -6275,8 +6272,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:285 @@ -6284,7 +6281,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "파일 문자셋:" @@ -6761,8 +6758,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6833,7 +6830,7 @@ msgstr "보냄" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -6900,7 +6897,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "호스트" @@ -7107,8 +7104,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" @@ -7273,78 +7270,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "바이너리" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "ause of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "필드의 길이 때문에,
    이 필드를 편집할 수 없습니다 " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "바이너리 - 편집 금지 " -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "웹서버 업로드 디렉토리" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "이어서" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "새 열을 삽입합니다" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "삽입 쿼리 보기" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "되돌아가기" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 #, fuzzy msgid "Go back to this page" msgstr "되돌아가기" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "다음 행 수정" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "탭 키나 CTRL+화살표로 값 항목을 이동할 수 있습니다." -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7372,7 +7369,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "확인" @@ -7390,7 +7387,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "정말로 다음을 실행하시겠습니까? " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "변화 없음" @@ -7644,7 +7641,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "북마크된 SQL 질의" @@ -7691,6 +7688,10 @@ msgstr "" msgid "no description" msgstr "설명이 없습니다" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "모두 체크안함" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7726,8 +7727,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "변수" @@ -7753,7 +7754,7 @@ msgstr "아무나" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7784,10 +7785,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7798,7 +7799,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7814,7 +7815,7 @@ msgstr "테이블 %s 을 제거했습니다." msgid "Event %1$s has been created." msgstr "테이블 %s 을 제거했습니다." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7824,16 +7825,16 @@ msgstr "" msgid "Edit event" msgstr "보냄" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "프로세스 목록" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7848,7 +7849,7 @@ msgstr "질의 종류" msgid "Event type" msgstr "질의 종류" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7881,13 +7882,13 @@ msgstr "마지막" msgid "On completion preserve" msgstr "완전한 INSERT문 작성" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7912,7 +7913,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7933,7 +7934,7 @@ msgstr "" msgid "Returns" msgstr "데이터베이스 사용량 통계" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7941,136 +7942,136 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "테이블 %s 을 제거했습니다." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "테이블 %s 을 제거했습니다." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "열(칼럼) 이름" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "생성" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "길이/값*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "데이터베이스 이름 변경" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "길이/값*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy msgid "Return options" msgstr "데이터베이스 사용량 통계" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "질의 종류" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8382,7 +8383,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8417,52 +8418,52 @@ msgstr "데이터베이스 검색" msgid "Click to select" msgstr "선택하려면 클릭하세요" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "데이터베이스 %s에 SQL 질의를 실행" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "데이터베이스 %s에 SQL 질의를 실행" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "이 질의를 다시 보여줌 " -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "View only" @@ -8553,7 +8554,7 @@ msgstr "기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을 #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "인덱스" @@ -8605,12 +8606,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "기본" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fulltext" @@ -8624,12 +8625,12 @@ msgstr "" msgid "after %s" msgstr "%s 다음에" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "필드 추가하기" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8676,7 +8677,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8820,8 +8821,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "사용자" @@ -8928,8 +8929,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:357 #, php-format @@ -8945,17 +8946,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "데이터베이스가 없습니다" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "테이블명" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -8979,7 +8980,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9042,47 +9043,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "테이블 복구" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "내보내기" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "질의(in query)" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "테이블 이름 바꾸기" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "사용자명" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "만들기 " -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy msgid "Active options" msgstr "실행" @@ -9257,13 +9258,13 @@ msgstr "" msgid "Files" msgstr "필드" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9279,7 +9280,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 #, fuzzy msgid "Information" msgstr "로그인 정보" @@ -9308,11 +9309,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "통계 보기" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9562,7 +9563,7 @@ msgid "None" msgstr "없음" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" @@ -9579,7 +9580,7 @@ msgstr "" msgid "Global privileges" msgstr "전체적 권한" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" @@ -9599,7 +9600,7 @@ msgstr "로그인 정보" msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9650,7 +9651,7 @@ msgstr "선택한 사용자들을 삭제했습니다." msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "권한 수정" @@ -9665,7 +9666,7 @@ msgid "Export all" msgstr "내보내기" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Any" @@ -9687,119 +9688,119 @@ msgstr "사용권한" msgid "Users overview" msgstr "사용자 개요" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 #, fuzzy msgid "Grant" msgstr "인쇄" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "선택한 사용자를 삭제" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "다음 데이터베이스에 권한 추가하기" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "다음 테이블에 권한 추가하기" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 #, fuzzy msgid "... delete the old one from the user tables." msgstr "권한 테이블에서 사용자를 삭제하기만 함." -#: server_privileges.php:2375 +#: server_privileges.php:2370 #, fuzzy msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:2376 +#: server_privileges.php:2371 #, fuzzy msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "사용자를 삭제하고 사용권한을 갱신함." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr ""%s" 에 접근할 수 있는 사용자들" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10081,48 +10082,48 @@ msgstr "테이블 보기" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "테이블 보기" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy msgid "Related links:" msgstr "테이블 작업" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "질의 종류" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "함수" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10130,118 +10131,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "명세" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "이 MySQL 서버는 %s 동안 구동되었습니다.
    구동 시작날짜는 %s 입니다." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "받음" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "보냄" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "실패한 시도" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "커맨드" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10249,78 +10250,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10328,7 +10329,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10336,42 +10337,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10379,33 +10380,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10414,243 +10415,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "파일 문자셋:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10658,99 +10659,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10758,18 +10759,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10777,68 +10778,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "트래킹이 활성화되어 있지 않습니다." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "토" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy msgid "Add chart" msgstr "필드 추가하기" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "컬럼 추가/삭제" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10847,7 +10848,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10855,18 +10856,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10874,11 +10875,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10886,94 +10887,94 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "데이터베이스 이름 변경" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy msgid "Select series:" msgstr "모두 선택" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "새 사용자 추가" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL 질의" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "행(레코드) 통계" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy msgid "Selected time range:" msgstr "모두 선택" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "질의 종류" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 초" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11744,35 +11745,35 @@ msgstr "referential 무결성 검사:" msgid "Showing tables" msgstr "테이블 보기" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "공간 사용량" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "실제량" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "행(레코드) 통계" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "정적" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "동적(다이내믹)" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "행 길이" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Row size" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11795,7 +11796,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "외래키 제약" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11852,55 +11853,55 @@ msgstr "%s 에 인덱스가 걸렸습니다" msgid "Show more actions" msgstr "PHP 정보 보기" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "컬럼 제거" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "인쇄용 보기" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "제안하는 테이블 구조" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy msgid "Add column" msgstr "필드 추가하기" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "테이블의 마지막" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "테이블의 처음" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s 다음에" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "%s 개 열(칼럼)에 인덱스 만들기 " -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12421,8 +12422,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12552,8 +12553,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/lt.po b/po/lt.po index 3fdfedbf7d..cd9b96a797 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-03 12:52+0200\n" "Last-Translator: Michal Čihař \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" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\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" "X-Generator: Weblate 0.10\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -38,53 +38,54 @@ msgstr "" "Tikslo langas neatnaujintas. Galbūt Jūs uždarėte pagrindinį langą arba Jūsų " "naršyklė blokuoja atnaujinimus tarp langų dėl nustatyto saugumo." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Paieška" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Vykdyti" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Indekso pavadinimas" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Paaiškinimas" @@ -117,13 +118,13 @@ msgstr "Duomenų bazės komentaras: " msgid "Table comments" msgstr "Lentelės komentarai" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Lentelės komentarai" msgid "Column" msgstr "Stulpelis" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tipas" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Sąryšis su" msgid "Comments" msgstr "Komentarai" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Komentarai" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Ne" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Peržiūrėti duomenų bazės atvaizdį (schemą)" msgid "No tables found in database." msgstr "Duomenų bazėje nerasta lentelių." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Pažymėti visas" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Atžymėti visas" @@ -323,12 +324,12 @@ msgstr "Pridėti apribojimą" msgid "Switch to copied database" msgstr "Pereiti į nukopijuotą duomenų bazę" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Palyginimas" @@ -350,17 +351,17 @@ msgstr "Keisti arba eksportuoti ryšių schemą" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Lentelė" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Eilutės" @@ -375,21 +376,21 @@ msgstr "šiuo metu naudojama" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Sukurta" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Paskutinis atnaujinimas" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Paskutinis patikrinimas" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Pakeičiant" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Arba" @@ -494,61 +495,28 @@ msgstr "Vykdyti užklausą" msgid "Access denied" msgstr "Priėjimas uždraustas" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "bent vienas iš žodžių" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "visi žodžiai" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "ištisa frazė" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "kaip reguliarųjį išsireiškimą" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Paieškos rezultatai frazei „%s“ %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s atitikmuo lentelėje %s" -msgstr[1] "%s atitikmenys lentelėse %s" -msgstr[2] "%s atitikmenų lentelėse %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Peržiūrėti" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Ištrinti sutapimus %s lentelėje(ei)?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Trinti" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -556,27 +524,60 @@ msgstr[0] "Iš viso: %s atitikmuo" msgstr[1] "Iš viso: %s atitikmenys" msgstr[2] "Iš viso: %s atitikmenų" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s atitikmuo lentelėje %s" +msgstr[1] "%s atitikmenys lentelėse %s" +msgstr[2] "%s atitikmenų lentelėse %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Peržiūrėti" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Ištrinti sutapimus %s lentelėje(ei)?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Trinti" + +#: db_search.php:362 msgid "Search in database" msgstr "Paieška duomenų bazėje" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simboliui: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Rasti:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Žodžiai atskirti tarpo simboliu („ “)." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Viduje lentelių:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Stulpelio viduje:" @@ -615,18 +616,18 @@ msgstr "Sekimas yra neaktyvus." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " -"%sdokumentacijoje%s." +"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %" +"sdokumentacijoje%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Rodinys" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -636,93 +637,89 @@ msgstr "Replikavimas" msgid "Sum" msgstr "Sumos" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Pasirinktus:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Pažymėti visas" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Atžymėti visas" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksportuoti" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Išvalyti" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Šalinti" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Patikrinti lentelę" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimizuoti" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Taisyti lentelę" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizuoti lentelę" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Pridėti priešdėlį lentelės pavadinimui" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Pakeisti lentelės pavadinimo priešdėlį" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopijuoti lentelę su pavadinimo priešdėliu" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Duomenų žodynas" @@ -735,9 +732,9 @@ msgstr "Sekamos lentelės" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Duomenų bazė" @@ -754,17 +751,17 @@ msgstr "Sukurta" msgid "Updated" msgstr "Atnaujinta" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Būsena" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Veiksmas" @@ -796,7 +793,7 @@ msgstr "Momentinė struktūros kopija" msgid "Untracked tables" msgstr "Nesekamos lentelės" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Sekti lentelę" @@ -939,11 +936,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " -"%sdokumentaciją%s būdams kaip apeiti šį apribojimą." +"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %" +"sdokumentaciją%s būdams kaip apeiti šį apribojimą." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1017,13 +1014,13 @@ msgstr "" "padidintumėte PHP laiko limitą." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Jūsų SQL užklausa sėkmingai įvykdyta" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Atgal" @@ -1109,8 +1106,8 @@ msgstr "Tuščias slaptažodis!" msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Pridėti naudotoją" @@ -1128,7 +1125,7 @@ msgid "Close" msgstr "Uždaryti" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1155,13 +1152,13 @@ msgstr "Statiniai duomenys" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Iš viso" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Kita" @@ -1191,7 +1188,7 @@ msgstr "Serverio duomenų srautas (KiB)" msgid "Connections since last refresh" msgstr "prisijungimų nuo paskutinio įkėlimo iš naujo" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesai" @@ -1253,13 +1250,13 @@ msgstr "Sistemos swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1311,7 +1308,7 @@ msgstr "Išsiųsta baitų" msgid "Bytes received" msgstr "Gauta baitų" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Prisijungimai" @@ -1350,11 +1347,11 @@ msgstr "%d lentelė(-ės)" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Apkrovimas" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Nustatymai" @@ -1379,8 +1376,8 @@ msgstr "Prašome pridėti bent vieną kintamąjį į eilę" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Ne" @@ -1477,7 +1474,7 @@ msgstr "Keisti nustatymus" msgid "Current settings" msgstr "Dabartiniai nustatymai" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Diagramos antraštė" @@ -1564,7 +1561,7 @@ msgstr "Paaiškinti SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Laikas" @@ -1672,10 +1669,10 @@ msgstr "" "Nepavyko sudaryti diagramos tinklelio su importuota konfigūracija. Nustatoma " "į numatytąją konfigūraciją..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importuoti" @@ -1731,9 +1728,9 @@ msgstr "Naudojamas kintamasis / formulė" msgid "Test" msgstr "Išbandyti" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Atšaukti" @@ -1761,9 +1758,9 @@ msgstr "Šalinamas stulpelis" msgid "Adding Primary Key" msgstr "Pridedamas pirminis raktas" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Gerai" @@ -1847,7 +1844,7 @@ msgstr "Šaliname" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Apibrėžimas „stored“ funkcijos turi turėti RETURN teiginį." -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktorius" @@ -1887,8 +1884,8 @@ msgstr "Rodyti užklausos laukelį" msgid "No rows selected" msgstr "Nepasirinkti įrašai" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Redaguoti" @@ -1903,7 +1900,7 @@ msgid "%d is not valid row number." msgstr "%d nėra galimas eilutės numeris." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2391,8 +2388,8 @@ msgstr "" #| "Failed formatting string for rule '%s'. PHP threw following error: %s" msgid "Failed formatting string for rule '%s'." msgstr "" -"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: " -"%s" +"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: %" +"s" #: libraries/Advisor.class.php:361 #, php-format @@ -2416,16 +2413,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "per sekundę" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "per minutę" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "per valandą" @@ -2536,8 +2533,8 @@ msgstr "Rūšiuoti pagal raktą" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Nustatymai" @@ -2592,7 +2589,7 @@ msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Stabdyti procesą" @@ -2621,27 +2618,27 @@ msgstr "iš viso " msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Sukurti rodinį" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Sąryšis nerastas" @@ -2716,46 +2713,46 @@ msgstr "Slapukai turi būti priimami." msgid "Javascript must be enabled past this point" msgstr "Slapukai turi būti priimami." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Nėra aprašytų indeksų!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksai" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikalus" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Suspausta" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Elementų skaičius" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentaras" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Panaikintas pirminis raktas" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indeksas %s ištrintas" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2763,9 +2760,9 @@ msgid "" msgstr "" "Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Duomenų bazės" @@ -2775,7 +2772,7 @@ msgstr "Duomenų bazės" msgid "Server" msgstr "Serveris" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2788,104 +2785,104 @@ msgstr "Serveris" msgid "Structure" msgstr "Struktūra" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Įterpti" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Veiksmai" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Lentelė atrodo tuščia!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Duomenų bazė atrodo tuščia!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "SQL užklausa" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegijos" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Įvykiai" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Projektavimas" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Naudotojas" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sinchronizuoti" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Dvejetainis log'as" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Kintamieji" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Koduotės" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Varikliai" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Klaida" @@ -2930,73 +2927,73 @@ msgstr "Paskiausios lentelės" msgid "There are no recent tables" msgstr "Nėra jokių paskiausių lentelių" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Apie šio Saugojimo Variklio būseną nėra išsamios informacijos." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s galimas šiame MySQL serveryje." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s šiame MySQL serveryje yra išjungtas." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "lentelės būsena nežinoma:" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Iš duomenų bazės" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nerasta!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Neteisingas duomenų bazės vardas" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Neteisingas lentelės vardas" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Klaida pervadinant lentelę iš %1$s į %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Lentelė %s pervadinta į %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Nepavyko išsaugoti lentelės naudotojo sąsajos nustatymų." -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3004,22 +3001,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkcija" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operatorius" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Reikšmė" @@ -3029,7 +3026,7 @@ msgstr "Reikšmė" msgid "Table Search" msgstr "Paieška" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3167,14 +3164,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3432,8 +3429,8 @@ msgstr "Jūs naudojate %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -3550,12 +3547,12 @@ msgstr "Lentelės" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Duomenys" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Perteklius" @@ -3669,18 +3666,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL užklausa" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3768,7 +3765,7 @@ msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s" msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" @@ -3778,8 +3775,8 @@ msgstr "Naršyti savo kompiuteryje:" msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." @@ -3964,7 +3961,7 @@ msgstr "Atstatyti numatytąsias reikšmes" msgid "Allow users to customize this value" msgstr "Leisti naudotojams adaptuoti šią reikšmę" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4251,7 +4248,7 @@ msgid "Character set of the file" msgstr "Failo simbolių koduotė:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formatas" @@ -4547,7 +4544,7 @@ msgstr "Navigacijos rėmelis" msgid "Customize appearance of the navigation frame" msgstr "Adaptuoti navigacijos rėmelio išvaizdą" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Serveriai" @@ -5865,7 +5862,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6186,7 +6183,7 @@ msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6194,17 +6191,17 @@ msgid "" "configured)." msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatsako" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detalės..." @@ -6259,8 +6256,8 @@ msgstr "Sukurti lentelę" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Pavadinimas" @@ -6360,8 +6357,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu" #, 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 "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite " "keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -6372,7 +6369,7 @@ msgid "use this for future exports" msgstr "naudoti šitai ateities eksportams" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Simbolių koduotė faile:" @@ -6859,8 +6856,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6920,7 +6917,7 @@ msgstr "Įvykis" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -6983,7 +6980,7 @@ msgstr "Rodyti MIME-tipus" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Darbinė stotis" @@ -7201,8 +7198,8 @@ msgstr "Eksportuoti turinį" msgid "No data found for GIS visualization." msgstr "Nerasta duomenų GIS vizualizavimui." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." @@ -7382,76 +7379,76 @@ msgstr "SQL suderinamumo režimas:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nenaudokite AUTO_INCREMENT nulinėms reikšmėms" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Paslėpti" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Dvejetainis" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Dėl jo ilgio,
    šis laukelis gali būti neredaguojamas (tinas)" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Dvejetainis - nekeisti" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "web serverio katalogas atsiuntimams" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Tęstį įterpimą su %s eilučių" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "ir tada" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Įterpti kaip naują įrašą" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Rodyti įterptą užklausą" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" @@ -7475,7 +7472,7 @@ msgid "To" msgstr "Kam" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Siųsti" @@ -7493,7 +7490,7 @@ msgstr "Pridėti priešdėlį" msgid "Do you really want to execute the following query?" msgstr "Ar tikrai norite " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Nėra pakeitimų" @@ -7747,7 +7744,7 @@ msgstr "" "Informaciją, kaip atnaujinti column_comments lentelę, galite rasti " "dokumentacijoje." -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Sukurti nuoroda SQL-užklausai" @@ -7801,6 +7798,10 @@ msgstr "" msgid "no description" msgstr "Aprašymo nėra" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Atžymėti visas" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Pavaldžiojo (Slave) serverio konfigūracija" @@ -7838,8 +7839,8 @@ msgstr "Pagrindinio serverio būklė (Master status)" msgid "Slave status" msgstr "Pavaldžiojo serverio būklė (Slave status)" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Kintamasis" @@ -7864,7 +7865,7 @@ msgstr "Bet kurį vartotoją" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" @@ -7895,10 +7896,10 @@ msgid "Generate Password" msgstr "Generuoti slaiptažodį" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7909,7 +7910,7 @@ msgstr "Sekančios užklausos nepavyko: „%s“" msgid "Sorry, we failed to restore the dropped event." msgstr "Atsiprašome, nepavyko atstatyti pašalinto įvykio." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7924,7 +7925,7 @@ msgstr "Įvykis %1$s buvo pakeistas." msgid "Event %1$s has been created." msgstr "Įvykis %1$s buvo sukurtas." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "Viena ar daugiau klaidų įvyko vykdant Jūsų užklausą:" @@ -7933,14 +7934,14 @@ msgstr "Viena ar daugiau klaidų įvyko vykdant Jūsų užklausą:" msgid "Edit event" msgstr "Redaguoti įvykį" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Klaida vykdant užklausą" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalės" @@ -7955,7 +7956,7 @@ msgstr "Įvykio tipas" msgid "Event type" msgstr "Įvykio tipas" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Pakeisti į %s" @@ -7986,13 +7987,13 @@ msgstr "Pabaiga" msgid "On completion preserve" msgstr "Pabaigus išlaikyti" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8017,7 +8018,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8037,7 +8038,7 @@ msgstr "Įvykių planuotojo būsena" msgid "Returns" msgstr "Grąžina" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8045,114 +8046,114 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Blogas serverio indeksas: %s" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Stulpelis %s panaikintas" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Sukurta %1$s lentelė." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redagavimo režimas" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Stulpelių vardai" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parametrai" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Nukreipimas" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Ilgis/reikšmės*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Pridėti parametrą" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Pašalinti paskutinį parametrą" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Gražinimo tipas" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Grąžinimo Ilgis/reikšmės" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Grąžinimo parametrai" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Yra apibrėžtas" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Saugumo tipas" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL duomenų priėjimas" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8160,18 +8161,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8456,7 +8457,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Nežinoma kalba: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Dabartinis serveris" @@ -8487,50 +8488,50 @@ msgstr "Į duomenų bazę" msgid "Click to select" msgstr "Spustelėkite pažymėjimui" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Vykdyti SQL sakinius serveryje %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Vykdyti SQL sakinius duomenų bazėje %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Išvalyti" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Stulpeliai" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Nekeisti šios užklausos už aktyvaus lango ribų." -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Skyriklis" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Rodyti šią užklausą vėl " -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Peržiūra" @@ -8634,7 +8635,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeksas" @@ -8688,12 +8689,12 @@ msgid "As defined:" msgstr "Kaip nurodyta:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Pirminis" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fulltext" @@ -8707,12 +8708,12 @@ msgstr "" msgid "after %s" msgstr "Po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Pridėti %s stulpelį(-ius)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." @@ -8771,7 +8772,7 @@ msgid "Displays a link to download this image." msgstr "" "Išvedama nuoroda į šį paveikslėlį (tiesioginis blob atsisiuntimas ir pan.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8947,8 +8948,8 @@ msgid "Protocol version" msgstr "Protokolo versija" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Naudotojas" @@ -9076,17 +9077,17 @@ msgstr "" "Serveris veikia su Suhosin. Prašome perskaityti %sdokumentaciją%s dėl galimų " "problemų." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Nėra duomenų bazių" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Pakeisti lentelės rikiavimą pagal:" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9109,7 +9110,7 @@ msgstr "Rodyti/slėpti kairį meniu" msgid "Save position" msgstr "Išsaugoti vietą" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Sukurti sąryšį" @@ -9174,39 +9175,39 @@ msgstr "Slėpti/rodyti lenteles be sąryšių" msgid "Number of tables" msgstr "Lentelių skaičius" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Ištrinti sąryšį" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Sąryšis ištrintas" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Išskyrus" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Pervadinti į" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Naujas vardas" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "" @@ -9368,13 +9369,13 @@ msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai" msgid "Files" msgstr "Failai" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Trumpinti rodomas užklausas" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" @@ -9390,7 +9391,7 @@ msgstr "Padėtis" msgid "Original position" msgstr "Pirminė padėtis" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informacija" @@ -9420,11 +9421,11 @@ msgstr "Pagrindinio serverio replikavimas" msgid "Slave replication" msgstr "Pavaldžiojo serverio replikavimas" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Leisti statistiką" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9676,7 +9677,7 @@ msgid "None" msgstr "Nėra" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" @@ -9693,7 +9694,7 @@ msgstr "Administracija" msgid "Global privileges" msgstr "Globalios teisės" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Specifinės duomenų bazių privilegijos" @@ -9713,7 +9714,7 @@ msgstr "Prisijungimo informacija" msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Nerasta jokių naudotojų." @@ -9762,7 +9763,7 @@ msgstr "Pažymėti vartotojai sėkmingai pašalinti." msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Redaguoti privilegijas" @@ -9777,7 +9778,7 @@ msgid "Export all" msgstr "Eksportuoti" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Bet kurį(ią)" @@ -9799,82 +9800,82 @@ msgstr "Privilegijos" msgid "Users overview" msgstr "Vartotojų peržiūra" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Suteikti" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Pašalinti pažymėtus vartotojus" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" "Pašalinti duomenų bazes, turinčias tokius pačius pavadinimus kaip ir " "vartotojai." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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ų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti. " -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Sukurti privilegijas šiai duomenų bazei" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Norėdami naudoti _ ir % kaip simbolius, prieš juos prirašykite \\" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... palikti seną vartotoją." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... pašalinti seną vartotoją iš vartotojų lentelės." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9882,42 +9883,42 @@ msgstr "" " ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti " "privilegijas" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Vartotojo duomenų bazė" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "Sukurti duomenų bazę su tokiu pat vardu ir suteikti jai visas privilegijas" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Suteikti visas privilegijas duomenų bazei „%s“" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Vartotojai turintys priėjimą prie „%s“" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globalus" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "tam tikros duomenų bazės" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "pakaitos simbolis" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Naudotojas buvo pridėtas." @@ -10208,47 +10209,47 @@ msgstr "" msgid "Filter by category..." msgstr "Filtruoti pagal kategoriją..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Rodyti nesuformatuotas reikšmes" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Susijusios nuorodos:" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query analyzer" msgid "Run analyzer" msgstr "Užklausos analizatorius" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Įvadas" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10256,33 +10257,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Adaptuoti paleidimo (pagrindinį) puslapį" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Parametrai" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10290,19 +10291,19 @@ msgstr "" "Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis " "serveris dauginimo procese." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo " "procese." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo " "procese." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10310,71 +10311,71 @@ msgstr "" "Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Dauginimo būsena" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Gauta" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Siųsta" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Daugiausia lygiagrečių prisijungimų" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Nepavykę bandymai" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Nutraukta" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Komanda" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10382,78 +10383,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Kiek laikinųjų failų mysqld sukūrė." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Vidinių COMMIT užklausų skaičius." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10461,7 +10462,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10469,42 +10470,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Vidinių ROLLBACK užklausų skaičius." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Skaičius užklausų, kad atnaujinti eilutę lentelėje." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Skaičius užklausų, kad įtraukti eilutę lentelėje." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Tuščių puslapių skaičius." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10512,33 +10513,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10547,244 +10548,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Esamu momentu laukiančių fsync() operacijų skaičius." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Esamu momentu laukiančių skaitymų skaičius." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Esamu momentu laukiančių rašymų skaičius." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Sukurtų puslapių skaičius." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Puslapių skaitymų skaičius." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Įrašytų puslapių skaičius." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Įkelto failo formatas" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Failų kurie yra atidaryti skaičius." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Lentelių kurios yra atidarytos skaičius." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Podėlio kreipimųsi skaičius." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10792,99 +10793,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Surikiuotų eilučių skaičius." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10892,18 +10893,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10911,63 +10912,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Sekimas yra neaktyvus." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Paleisti Monitor" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Instrukcijos/Diegimas" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Pridėti diagramą" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Naujinimo dažnis" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Diagramos stulpeliai" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Diagramos išdėstymas" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Atstatyti numatytąsias reikšmes" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Monitor instrukcijos" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10976,7 +10977,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10984,18 +10985,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11003,11 +11004,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11015,81 +11016,81 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Pašalinti diagramą" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Būsenos kintamasis(ieji)" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Pasirinkite eiles:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "arba įveskite kintamojo vardą:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Pridėti šią eilę" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Eilės diagramoje:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Registruoti statistiką" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Pasirinktas laiko tarpas:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Užklausos analizatorius" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11098,7 +11099,7 @@ msgstr[0] "Sekundė" msgstr[1] "Sekundės" msgstr[2] "Sekundžių" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11901,35 +11902,35 @@ msgstr "Patikrinti sąryšių vientisumą:" msgid "Showing tables" msgstr "Rodyti lentelės" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Vietos naudojimas" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektyvus" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Eilučių statistika" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "pastovus" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinaminis" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Eilutės ilgis" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Eilutės dydis" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11954,7 +11955,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12006,51 +12007,51 @@ msgstr "Indeksas sukurtas %s stulpeliui" msgid "Show more actions" msgstr "Rodyti daugiau veiksmų" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Pašalinti stulpelį(-ius)" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Keisti rodinį" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Peržiūrėti sąryšius" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Analizuoti lentelės struktūrą" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Pridėti stulpelį" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Lentelės pabaigoje" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Lentelės pradžioje" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Sukurti indeksą  %s stulpeliams" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12578,8 +12579,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12712,8 +12713,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/lv.po b/po/lv.po index cf38f855eb..4fc622c165 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: latvian \n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" "X-Generator: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgstr "" "vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības " "iestādījumu dēļ." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Meklēt" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Aiziet!" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Atslēgas nosaukums" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Apraksts" @@ -116,13 +117,13 @@ msgstr "Datubāzes komentārs: " msgid "Table comments" msgstr "Komentārs tabulai" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Komentārs tabulai" msgid "Column" msgstr "Kolonnu nosaukumi" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tips" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Linki uz" msgid "Comments" msgstr "Komentāri" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Komentāri" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nē" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Nē" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Apskatīt datubāzes dampu (shēmu)" msgid "No tables found in database." msgstr "Tabulas nav atrastas šajā datubāzē." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Iezīmēt visu" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Neiezīmēt neko" @@ -327,12 +328,12 @@ msgstr "Pievienot ierobežojumus" msgid "Switch to copied database" msgstr "Pārslēgties uz nokopēto datubāzi" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Izkārtojumi" @@ -360,17 +361,17 @@ msgstr "Relāciju shēma" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabula" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rindas" @@ -385,21 +386,21 @@ msgstr "lietošanā" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Izveidošana" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Pēdējā atjaunošana" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Pēdējā pārbaude" @@ -464,7 +465,7 @@ msgid "Del" msgstr "Dzēst" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Vai" @@ -509,60 +510,28 @@ msgstr "Izpildīt vaicājumu" msgid "Access denied" msgstr "Pieeja aizliegta" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "kaut viens no vārdiem" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "visi vārdi" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "precīza frāze" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "kā regulārā izteiksme" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Meklēšanas rezultāti \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s rezultāti tabulā %s" -msgstr[1] "%s rezultāti tabulā %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Apskatīt" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Dati tabulai" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Dzēst" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -570,31 +539,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Kopumā: %s rezultāti" msgstr[1] "Kopumā: %s rezultāti" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s rezultāti tabulā %s" +msgstr[1] "%s rezultāti tabulā %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Apskatīt" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Dati tabulai" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Dzēst" + +#: db_search.php:362 msgid "Search in database" msgstr "Meklēt datubāzē" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Vārdi vai vērtības meklēšanai (aizstājējzīme: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Atrast:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Vārdi ir atdalīti ar tukšumu (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tabulā(s):" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -637,8 +638,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -646,7 +647,7 @@ msgstr "" msgid "View" msgstr "" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 #, fuzzy @@ -657,97 +658,93 @@ msgstr "Relācijas" msgid "Sum" msgstr "Kopumā" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Ar iezīmēto:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Iezīmēt visu" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Neiezīmēt neko" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksports" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Iztukšot" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Likvidēt" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Pārbaudīt tabulu" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimizēt tabulu" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Restaurēt tabulu" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizēt tabulu" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Datu vārdnīca" @@ -760,9 +757,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Datubāze" @@ -780,17 +777,17 @@ msgstr "Izveidot" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Statuss" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Darbība" @@ -824,7 +821,7 @@ msgstr "Tikai struktūra" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Pārbaudīt tabulu" @@ -976,8 +973,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1040,13 +1037,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Atpakaļ" @@ -1145,8 +1142,8 @@ msgstr "Parole nav norādīta!" msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1169,7 +1166,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1199,13 +1196,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Kopā" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1237,7 +1234,7 @@ msgstr "Servera izvēle" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesi" @@ -1303,13 +1300,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1367,7 +1364,7 @@ msgstr "" msgid "Bytes received" msgstr "Saņemts" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Konekcijas" @@ -1408,11 +1405,11 @@ msgstr "%s tabula(s)" msgid "Questions" msgstr "Persiešu" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Datu apmaiņa" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1439,8 +1436,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Nav" @@ -1540,7 +1537,7 @@ msgstr "Galvenās relāciju īpašības" msgid "Current settings" msgstr "Galvenās relāciju īpašības" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1626,7 +1623,7 @@ msgstr "Izskaidrot SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Laiks" @@ -1734,10 +1731,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksports" @@ -1792,9 +1789,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1825,9 +1822,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Labi" @@ -1933,7 +1930,7 @@ msgstr "Dzēšam %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1975,8 +1972,8 @@ msgstr "SQL vaicājums" msgid "No rows selected" msgstr "Rindas nav iezīmētas" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Labot" @@ -1991,7 +1988,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2561,16 +2558,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "sekundē" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "minūtē" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "stundā" @@ -2686,8 +2683,8 @@ msgstr "Kārtot pēc atslēgas" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Darbības" @@ -2750,7 +2747,7 @@ msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Nogalināt" @@ -2777,30 +2774,30 @@ msgstr "kopā" msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Links nav atrasts" @@ -2872,56 +2869,56 @@ msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." msgid "Javascript must be enabled past this point" msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Nav definēti indeksi!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikālais" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalitāte" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Komentāri" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primārā atslēga tika izdzēsta" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indekss %s tika izdzēsts" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Datubāzes" @@ -2931,7 +2928,7 @@ msgstr "Datubāzes" msgid "Server" msgstr "Serveris" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2944,104 +2941,104 @@ msgstr "Serveris" msgid "Structure" msgstr "Struktūra" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Pievienot" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Darbības" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Vaicājums pēc parauga" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilēģijas" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Lietotājs" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binārais log-fails" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Mainīgie" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Rakstzīmju kodējumi" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Kļūda" @@ -3088,71 +3085,71 @@ msgstr "Nav tabulu" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Meklēt datubāzē" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Meklēt datubāzē" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabula %s tika pārsaukta par %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3160,22 +3157,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkcija" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operators" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Vērtība" @@ -3185,7 +3182,7 @@ msgstr "Vērtība" msgid "Table Search" msgstr "Meklēt" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3320,14 +3317,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3585,8 +3582,8 @@ msgstr "Laipni lūgti %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3698,12 +3695,12 @@ msgstr "Tabulas" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Dati" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Pārtēriņš" @@ -3818,18 +3815,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL vaicājums" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3919,7 +3916,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3930,8 +3927,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web servera augšupielādes direktorija" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" @@ -4128,7 +4125,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4406,7 +4403,7 @@ msgid "Character set of the file" msgstr "Tabulas kodējums:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formats" @@ -4728,7 +4725,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5998,7 +5995,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL vaicājums" @@ -6311,23 +6308,23 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatbild" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6387,8 +6384,8 @@ msgstr "Izveidot jaunu lapu" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nosaukums" @@ -6509,8 +6506,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:285 @@ -6518,7 +6515,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Tabulas kodējums:" @@ -6998,8 +6995,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7075,7 +7072,7 @@ msgstr "Nosūtīts" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7153,7 +7150,7 @@ msgstr "Pieejamie MIME tipi" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Hosts" @@ -7362,8 +7359,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." @@ -7530,79 +7527,79 @@ msgstr "MySQL 4.0 savietojams" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binārais" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Sava garuma dēļ,
    šis lauks var būt nerediģējams " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binārais - netiek labots" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "web servera augšupielādes direktorija" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL" "+bultiņas, lai pārvietotos jebkurā vietā" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7630,7 +7627,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Nosūtīt" @@ -7650,7 +7647,7 @@ msgstr "Pievienot jaunu lauku" msgid "Do you really want to execute the following query?" msgstr "Vai Jūs tiešām gribat " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Netika labots" @@ -7905,7 +7902,7 @@ msgid "" msgstr "" "Lūdzu skatieties dokumentāciju par to, kā atjaunot 'Column_comments' tabulu" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Saglabātie SQL vaicājumi" @@ -7952,6 +7949,10 @@ msgstr "" msgid "no description" msgstr "Bez apraksta" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Neiezīmēt neko" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7987,8 +7988,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Mainīgais" @@ -8013,7 +8014,7 @@ msgstr "Jebkurš lietotājs" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Lietot teksta lauku" @@ -8044,10 +8045,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8058,7 +8059,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8074,7 +8075,7 @@ msgstr "Tabula %s tika izdzēsta" msgid "Event %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8084,16 +8085,16 @@ msgstr "" msgid "Edit event" msgstr "Nosūtīts" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8108,7 +8109,7 @@ msgstr "Notikuma tips" msgid "Event type" msgstr "Notikuma tips" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8143,13 +8144,13 @@ msgstr "Beigas" msgid "On completion preserve" msgstr "Pilnas INSERT izteiksmes" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8174,7 +8175,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8196,7 +8197,7 @@ msgstr "" msgid "Returns" msgstr "Tabulas opcijas" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8204,140 +8205,140 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Kolonnu nosaukumi" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Izveidošana" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Garums/Vērtības*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Pievienot jaunu lauku" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Pārsaukt datubāzi par" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Garums/Vērtības*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabulas opcijas" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vaicājuma tips" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8656,7 +8657,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8691,53 +8692,53 @@ msgstr "Meklēt datubāzē" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "Kalendārs" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Nepārrakstīt šo vaicājumu ārpus šī loga" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Rādīt šo vaicājumu šeit atkal" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Tikai apskatīt" @@ -8846,7 +8847,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indekss" @@ -8901,12 +8902,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primārā" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Pilni teksti" @@ -8920,13 +8921,13 @@ msgstr "" msgid "after %s" msgstr "Pēc %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Pievienot %s lauku(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8984,7 +8985,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Parāda linku uz šo attēlu (tieša blob lauka lajuplāde)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9182,8 +9183,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Lietotājs" @@ -9308,17 +9309,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Nav datubāzu" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Mainīt datu kārtošanas laukus" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9342,7 +9343,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9407,47 +9408,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Relāciju pārskats" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksports" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "vaicājumā" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Pārsaukt tabulu uz" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Lietotājvārds" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Izveidot" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9627,13 +9628,13 @@ msgstr "Izvēlieties bināro log-failu apskatei" msgid "Files" msgstr "Lauki" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Ierobežot parādīto vaicājumu garumu" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" @@ -9649,7 +9650,7 @@ msgstr "Pozīcija" msgid "Original position" msgstr "Oriģinālā pozīcija" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informācija" @@ -9678,11 +9679,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Ieslēgt statistiku" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9943,7 +9944,7 @@ msgid "None" msgstr "Nav" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" @@ -9960,7 +9961,7 @@ msgstr "Administrācija" msgid "Global privileges" msgstr "Globālās privilēģijas" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" @@ -9980,7 +9981,7 @@ msgstr "Piekļuves informācija" msgid "Do not change the password" msgstr "Nemainīt paroli" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10031,7 +10032,7 @@ msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Mainīt privilēģijas" @@ -10046,7 +10047,7 @@ msgid "Export all" msgstr "Eksports" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Jebkurš" @@ -10068,82 +10069,82 @@ msgstr "Privilēģijas" msgid "Users overview" msgstr "Lietotāju pārskats" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Piešķirt" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Dzēst izvēlētos lietotājus" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Pievienot privilēģijas uz sekojošo datubāzi" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Aizstājējzīmes _ un % jāaizsargā ar \\ priekšā, lai izmantotu tās burtiski" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... paturēt veco lietotāju." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... dzēst veco lietotāju no lietotāju tabulas." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " "viņu." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10151,41 +10152,41 @@ msgstr "" " ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Lietotāji, kam ir pieja datubāzei "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globāls" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "datubāzei specifisks" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "aizstājējzīme" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy msgid "User has been added." msgstr "Lauks %s tika izdzēsts" @@ -10470,49 +10471,49 @@ msgstr "Rādīt tabulas" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "Rādīt tabulas" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relācijas" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vaicājuma tips" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Funkcija" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10520,118 +10521,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Parametrs" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Saņemts" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Nosūtīts" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Neveiksmīgi mēģinājumi" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Pārtraukts" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Komanda" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10639,78 +10640,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10718,7 +10719,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10726,42 +10727,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10769,33 +10770,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10804,243 +10805,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Tabulas kodējums:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11048,99 +11049,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11148,18 +11149,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11167,69 +11168,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vaicājuma tips" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "S" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Pievienot jaunu lauku" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Atjaunot" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11238,7 +11239,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11246,18 +11247,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11265,11 +11266,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11277,90 +11278,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Pārsaukt datubāzi par" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izvēlieties tabulas" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Pievienot jaunu lietotāju" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL vaicājums" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Rindas statistika" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Iezīmēt visu" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vaicājuma tips" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11368,7 +11369,7 @@ msgid_plural "%d seconds" msgstr[0] "sekundē" msgstr[1] "sekundē" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12143,35 +12144,35 @@ msgstr "Pārbaudīt referenciālo integritāti:" msgid "Showing tables" msgstr "Rādīt tabulas" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Diska vietas lietošana" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektīvs" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Rindas statistika" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamisks" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Rindas garums" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Rindas izmērs" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12196,7 +12197,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12254,56 +12255,56 @@ msgstr "Indekss tieka pievienots uz %s" msgid "Show more actions" msgstr "Parādīt PHP informāciju" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Pievienot %s lauku(s)" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Izdrukas versija" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relāciju pārskats" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Ieteikt tabulas sruktūru" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Pievienot %s lauku(s)" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Tabulas beigās" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Tabulas sākumā" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Pēc %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Izveidot indeksu uz %s laukiem" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12822,8 +12823,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12951,8 +12952,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/mk.po b/po/mk.po index 2d8fdaf631..d90809f261 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Пребарување" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Име на клуч" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Опис" @@ -115,13 +116,13 @@ msgstr "Коментар на базата на податоци: " msgid "Table comments" msgstr "Коментар на табелата" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Коментар на табелата" msgid "Column" msgstr "Имиња на колони" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Врски кон" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Коментари" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Не" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Не" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Прикажи содржина (шема) на базата" msgid "No tables found in database." msgstr "Табелите не се пронајдени во базата на податоци." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "избери се" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "ништо" @@ -324,12 +325,12 @@ msgstr "Додади ограничувања" msgid "Switch to copied database" msgstr "Префрли се на копираната база на податоци" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Подредување" @@ -357,17 +358,17 @@ msgstr "Релациона шема" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Табела" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Записи" @@ -382,21 +383,21 @@ msgstr "се користи" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Направено" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Последна измена" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Последна проверка" @@ -461,7 +462,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "или" @@ -506,60 +507,28 @@ msgstr "Изврши SQL" msgid "Access denied" msgstr "Пристапот не е допуштен" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "барем еден од зборовите" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "сите зборови" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "точен израз" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "како регуларен израз" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати од пребарувањето за \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s погодоци во табелата %s" -msgstr[1] "%s погодоци во табелата %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Преглед" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Приказ на податоци од табелата" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "избриши" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -567,31 +536,63 @@ msgid_plural "Total: %s matches" msgstr[0] "вкупно: %s погодоци" msgstr[1] "вкупно: %s погодоци" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s погодоци во табелата %s" +msgstr[1] "%s погодоци во табелата %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Преглед" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Приказ на податоци од табелата" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "избриши" + +#: db_search.php:362 msgid "Search in database" msgstr "Пребарување низ базата на податоци" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Барај:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Зборовите се одвојуваат со празно место (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "во табела(и):" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -634,8 +635,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -643,7 +644,7 @@ msgstr "" msgid "View" msgstr "Поглед" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 #, fuzzy @@ -654,93 +655,89 @@ msgstr "Релации" msgid "Sum" msgstr "Вкупно" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Обележаното:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "обележи ги сите" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "ниедно" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Испразни" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Бриши" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Проверка на табелата" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Оптимизација на табелата" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Поправка на табелата" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Анализа на табелата" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Додај префикс кон табелата" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Замени го префиксот на табелата" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Копирај табела со префикс" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Речник на податоци" @@ -753,9 +750,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "База на податоци" @@ -772,17 +769,17 @@ msgstr "Креирано" msgid "Updated" msgstr "Ажурирано" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Статус" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Акција" @@ -816,7 +813,7 @@ msgstr "Само структура" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Проверка на табелата" @@ -969,8 +966,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1033,13 +1030,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Вашиот SQL упит успешно е извршен" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" @@ -1137,8 +1134,8 @@ msgstr "Лозинка е празна!" msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1161,7 +1158,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1191,13 +1188,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Вкупно" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1229,7 +1226,7 @@ msgstr "Избор на сервер" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 #, fuzzy msgid "Processes" msgstr "Листа на процеси" @@ -1296,13 +1293,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1364,7 +1361,7 @@ msgstr "" msgid "Bytes received" msgstr "Примено" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Конекции" @@ -1405,11 +1402,11 @@ msgstr "%s табела" msgid "Questions" msgstr "Персиски" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Сообраќај" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1436,8 +1433,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "нема" @@ -1537,7 +1534,7 @@ msgstr "Општи особини на релациите" msgid "Current settings" msgstr "Општи особини на релациите" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1625,7 +1622,7 @@ msgstr "Објасни SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Време" @@ -1733,10 +1730,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Извоз" @@ -1791,9 +1788,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1823,9 +1820,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "ОК" @@ -1931,7 +1928,7 @@ msgstr "Бришам %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1973,8 +1970,8 @@ msgstr "SQL упит" msgid "No rows selected" msgstr "Нема селектирани записи" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Промени" @@ -1989,7 +1986,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2558,16 +2555,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "во секунда" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "во минута" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "на час" @@ -2684,8 +2681,8 @@ msgstr "Подредување по клуч" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Операции" @@ -2748,7 +2745,7 @@ msgid "The row has been deleted" msgstr "Записот е избришан" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Прекини" @@ -2777,30 +2774,30 @@ msgstr "вкупно" msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Врската не е пронајдена" @@ -2874,56 +2871,56 @@ msgstr "вашиот веб прелистувач треба да допушт msgid "Javascript must be enabled past this point" msgstr "вашиот веб прелистувач треба да допушти cookies" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Клучот не е дефиниран!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Клучеви" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Единствен" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Коментари" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Примарниот клуч е избришан" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Клучот %s е избиршан" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "База на податоци" @@ -2933,7 +2930,7 @@ msgstr "База на податоци" msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2946,104 +2943,104 @@ msgstr "Сервер" msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Нов запис" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операции" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Упит по пример" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Привилегии" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Рутини" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Корисник" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Бинарен дневник" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Кодни страници" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Складишта" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Грешка" @@ -3090,71 +3087,71 @@ msgstr "Нема табела" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Нема детални информации за статусот на овој вид на складиште." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s е достапен на овој MySQL сервер." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s е оневозможен на овој MySQL сервер." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Овој MySQL сервер не подржува %s вид на складиште." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Пребарување низ базата на податоци" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Пребарување низ базата на податоци" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Табелата %s е преименувана во %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3162,22 +3159,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Функција" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Оператор" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Вредност" @@ -3187,7 +3184,7 @@ msgstr "Вредност" msgid "Table Search" msgstr "Пребарување" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3322,14 +3319,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3587,8 +3584,8 @@ msgstr "%s Добредојдовте" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3701,12 +3698,12 @@ msgstr "Табели" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Податоци" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Пречекорување" @@ -3822,18 +3819,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL упит" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3925,7 +3922,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3936,8 +3933,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" @@ -4134,7 +4131,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4415,7 +4412,7 @@ msgid "Character set of the file" msgstr "Кодна страна на податотеката:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Формат" @@ -4738,7 +4735,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -6014,7 +6011,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL упит" @@ -6327,7 +6324,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6335,17 +6332,17 @@ msgid "" "configured)." msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Серверот не одговара" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6405,8 +6402,8 @@ msgstr "Направи нова страница" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Име" @@ -6527,8 +6524,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:285 @@ -6536,7 +6533,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Кодна страна на податотеката:" @@ -7036,8 +7033,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7113,7 +7110,7 @@ msgstr "Пратено" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7191,7 +7188,7 @@ msgstr "Достапни MIME-типови" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7401,8 +7398,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." @@ -7569,17 +7566,17 @@ msgstr "MySQL 4.0 компатибилно" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Бинарен" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" @@ -7587,63 +7584,63 @@ msgstr "" "Поради големина на полето
    можеби нема да може да ја менувате неговата " "содржина" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Бинарен - не менувај" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "директориум за праќање на веб серверот" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7671,7 +7668,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Испрати" @@ -7691,7 +7688,7 @@ msgstr "Додади ново поле" msgid "Do you really want to execute the following query?" msgstr "Дали навистина сакате да " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Нема измени" @@ -7947,7 +7944,7 @@ msgstr "" "Ве молиме погледнете во документацијата за тоа како се ажурира табелата " "Column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Запамтен SQL упит" @@ -7994,6 +7991,10 @@ msgstr "" msgid "no description" msgstr "нема опис" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "ниедно" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -8029,8 +8030,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Променлива" @@ -8055,7 +8056,7 @@ msgstr "Било кој корисник" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Користи текст поле" @@ -8086,10 +8087,10 @@ msgid "Generate Password" msgstr "Генерирање на лозинка" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8100,7 +8101,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8116,7 +8117,7 @@ msgstr "Табелата %s е избришана" msgid "Event %1$s has been created." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8126,15 +8127,15 @@ msgstr "" msgid "Edit event" msgstr "Пратено" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy msgid "Error in processing request" msgstr "Листа на процеси" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8149,7 +8150,7 @@ msgstr "Вид на настан" msgid "Event type" msgstr "Вид на настан" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8184,13 +8185,13 @@ msgstr "Крај" msgid "On completion preserve" msgstr "Комплетен INSERT (со имиња на полињата)" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8215,7 +8216,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8237,7 +8238,7 @@ msgstr "" msgid "Returns" msgstr "Опции на табелата" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8245,143 +8246,143 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Направено" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Должина/Вредност*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Додади ново поле" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Избриши ја базата на податоци." -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Должина/Вредност*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опции на табелата" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Вид на упит" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозволува извршување на stored рутини." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8702,7 +8703,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8737,53 +8738,53 @@ msgstr "Пребарување низ базата на податоци" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Изврши SQL упит(и) на базата %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Изврши SQL упит(и) на базата %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "Календар" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Не го препишувај овој упит надвор од овој прозорец" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Прикажи го повторно овој упит" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Види само" @@ -8890,7 +8891,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Клуч" @@ -8945,12 +8946,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Примарен" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Текст клуч" @@ -8964,13 +8965,13 @@ msgstr "" msgid "after %s" msgstr "после полето %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додади %s полиња" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9031,7 +9032,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Прикажува врска кон оваа слика (пример директно превземање од BLOB)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9244,8 +9245,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Корисник" @@ -9376,17 +9377,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Базата на податоци не постои" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Промени го редоследот во табелата" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9410,7 +9411,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9475,47 +9476,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Релационен поглед" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Извоз" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "во упитот" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Промени го името на табелата во " -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Назив на корисник" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Креирај" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9695,13 +9696,13 @@ msgstr "Изберете бинарен дневник за преглед" msgid "Files" msgstr "Полиња" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Прикажи скратени упити" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Прикажи комплетни упити" @@ -9717,7 +9718,7 @@ msgstr "Позиција" msgid "Original position" msgstr "Оргинална позиција" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Информации" @@ -9746,11 +9747,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Вклучи статистики" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10012,7 +10013,7 @@ msgid "None" msgstr "нема" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" @@ -10030,7 +10031,7 @@ msgstr "Администрација" msgid "Global privileges" msgstr "Глобални привилегии" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" @@ -10052,7 +10053,7 @@ msgstr "Податоци за најавувањето" msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10103,7 +10104,7 @@ msgstr "Изабраните корисници успешно се избриш msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Промена на привилегии" @@ -10118,7 +10119,7 @@ msgid "Export all" msgstr "Извоз" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Било кој" @@ -10140,32 +10141,32 @@ msgstr "Привилегии" msgid "Users overview" msgstr "Преглед на корисници" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Овозможи" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Избриши ги селектираните корисници" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "табелата на привилегии. Содржината на оваа табела табела може да се " @@ -10173,49 +10174,49 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Привилегии врзани за колоните" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Додади привилегии на следната база" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Додади привилегии на следната табела" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Направи нов корисник со исти привилегии и ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... сочувај го стариот." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... избриши ги старите од табелата на корисници." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10223,41 +10224,41 @@ msgstr "" " ... избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегии за базата на податоци "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Корисници кои имаат пристап "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "глобално" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "џокер" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10542,49 +10543,49 @@ msgstr "Прикажи табели" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "Прикажи табели" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релации" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Вид на упит" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Функција" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10592,119 +10593,119 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Овој MySQL сервер работи %s. Стартуван е на %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Примено" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Пратено" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Неуспешни обиди" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Прекинато" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Наредба" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10712,78 +10713,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10791,7 +10792,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10799,42 +10800,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10842,33 +10843,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10877,243 +10878,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Кодна страна на податотеката:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11121,99 +11122,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11221,18 +11222,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11240,69 +11241,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Вид на упит" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Саб" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Додади ново поле" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додади/избриши колона" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11311,7 +11312,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11319,18 +11320,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11338,11 +11339,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11350,90 +11351,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Избриши ја базата на податоци." -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Избери табели" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Додади нов корисник" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL упит" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Статистики за записите" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "избери се" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Вид на упит" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11441,7 +11442,7 @@ msgid_plural "%d seconds" msgstr[0] "во секунда" msgstr[1] "во секунда" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12216,35 +12217,35 @@ msgstr "Провери го референцијалниот интегрите msgid "Showing tables" msgstr "Прикажи табели" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Големина" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Ефективни" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Статистики за записите" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "динамички" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Должина на запис" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Големина на запис" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12269,7 +12270,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12327,56 +12328,56 @@ msgstr "Клучот е додаден %s" msgid "Show more actions" msgstr "Прикажи информации за PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Додади %s полиња" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Преглед за печатење" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Релационен поглед" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Предложи структура на табелата" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Додади %s полиња" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "на крајот од табелата" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "на почетокот од табелата" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "после полето %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Направи клуч на %s колони" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12897,8 +12898,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13027,8 +13028,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ml.po b/po/ml.po index 0e559c9027..d5d2c50734 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2011-09-27 08:42+0200\n" "Last-Translator: \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" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -37,53 +37,54 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "തിരയൂ" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "പോകൂ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "കീനാമം" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "വിവരണം" @@ -114,13 +115,13 @@ msgstr "വിവരശേഖര അഭിപ്രായം: " msgid "Table comments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -129,30 +130,30 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" msgid "Column" msgstr "നിര" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "തരം" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -190,8 +191,8 @@ msgstr "കണ്ണികൾ" msgid "Comments" msgstr "അഭിപ്രായങ്ങൾ" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -200,15 +201,15 @@ msgstr "അഭിപ്രായങ്ങൾ" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "ഇല്ല" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -223,8 +224,8 @@ msgstr "ഇല്ല" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -239,11 +240,11 @@ msgstr "" msgid "No tables found in database." msgstr "വിവരശേഖരത്തിൽ ഒരു പട്ടികയും കണ്ടെത്താനായില്ല." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "ഒന്നും തിരഞ്ഞെടുക്കാതിരിക്കുക" @@ -320,12 +321,12 @@ msgstr "" msgid "Switch to copied database" msgstr "" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "നിബന്ധന" @@ -346,17 +347,17 @@ msgstr "" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "പട്ടിക" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "വരികൾ" @@ -371,21 +372,21 @@ msgstr "ഉപയോഗത്തിൽ" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "സൃഷ്‌ടി" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "അവസാനം നവീകരിച്ചത്" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "അന്തിമ പരിശോധന" @@ -448,7 +449,7 @@ msgid "Del" msgstr "മായ്ക്കുക" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "അല്ലെനങ്കിൽ" @@ -489,85 +490,85 @@ msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക" msgid "Access denied" msgstr "" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "" -msgstr[1] "" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: db_search.php:292 -msgid "Search in database" -msgstr "" +#: db_search.php:296 +#, php-format +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "" +msgstr[1] "" -#: db_search.php:295 -msgid "Words or values to search for (wildcard: \"%\"):" -msgstr "" - -#: db_search.php:300 -msgid "Find:" -msgstr "" - -#: db_search.php:304 db_search.php:305 -msgid "Words are separated by a space character (\" \")." +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" msgstr "" #: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "" + +#: db_search.php:362 +msgid "Search in database" +msgstr "" + +#: db_search.php:366 +msgid "Words or values to search for (wildcard: \"%\"):" +msgstr "" + +#: db_search.php:373 +msgid "Find:" +msgstr "" + +#: db_search.php:376 db_search.php:377 +msgid "Words are separated by a space character (\" \")." +msgstr "" + +#: db_search.php:390 msgid "Inside tables:" msgstr "" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "" @@ -606,8 +607,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -615,7 +616,7 @@ msgstr "" msgid "View" msgstr "" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -625,93 +626,89 @@ msgstr "" msgid "Sum" msgstr "" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" @@ -724,9 +721,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "" @@ -743,17 +740,17 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "" @@ -785,7 +782,7 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "" @@ -918,8 +915,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -982,13 +979,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "" @@ -1072,8 +1069,8 @@ msgstr "" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "" @@ -1091,7 +1088,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1118,13 +1115,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1154,7 +1151,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1214,13 +1211,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "" @@ -1272,7 +1269,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1313,11 +1310,11 @@ msgstr "%s പട്ടിക" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "" @@ -1340,8 +1337,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "" @@ -1434,7 +1431,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "" @@ -1512,7 +1509,7 @@ msgstr "" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "" @@ -1602,10 +1599,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1653,9 +1650,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1683,9 +1680,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "" @@ -1761,7 +1758,7 @@ msgstr "" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1800,8 +1797,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "" @@ -1816,7 +1813,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2305,16 +2302,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2413,8 +2410,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2467,7 +2464,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2494,27 +2491,27 @@ msgstr "" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2583,55 +2580,55 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "" @@ -2641,7 +2638,7 @@ msgstr "" msgid "Server" msgstr "" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2654,102 +2651,102 @@ msgstr "" msgid "Structure" msgstr "" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2791,71 +2788,71 @@ msgstr "" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് മാറ്റിയിരിക്കുന്നു" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2863,22 +2860,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -2886,7 +2883,7 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "" @@ -3012,14 +3009,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3269,8 +3266,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3377,12 +3374,12 @@ msgstr "" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "" @@ -3489,18 +3486,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3588,7 +3585,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3598,8 +3595,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -3783,7 +3780,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4050,7 +4047,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "" @@ -4346,7 +4343,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5553,7 +5550,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "" @@ -5859,21 +5856,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -5928,8 +5925,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6029,8 +6026,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:285 @@ -6038,7 +6035,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6497,8 +6494,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6558,7 +6555,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6619,7 +6616,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -6813,8 +6810,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6977,75 +6974,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7069,7 +7066,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7085,7 +7082,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7335,7 +7332,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7382,6 +7379,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7416,8 +7417,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7442,7 +7443,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7473,10 +7474,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7487,7 +7488,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7502,7 +7503,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7511,14 +7512,14 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7531,7 +7532,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "" @@ -7558,13 +7559,13 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7589,7 +7590,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7609,7 +7610,7 @@ msgstr "" msgid "Returns" msgstr "" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7617,125 +7618,125 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8016,7 +8017,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8047,50 +8048,50 @@ msgstr "" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8173,7 +8174,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8218,12 +8219,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8236,12 +8237,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "" @@ -8286,7 +8287,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8424,8 +8425,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -8533,15 +8534,15 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "" @@ -8562,7 +8563,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -8622,37 +8623,37 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "" @@ -8812,13 +8813,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -8834,7 +8835,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -8863,11 +8864,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9105,7 +9106,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9122,7 +9123,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9142,7 +9143,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9191,7 +9192,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9204,7 +9205,7 @@ msgid "Export all" msgstr "" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9221,115 +9222,115 @@ msgstr "" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "" @@ -9596,43 +9597,43 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9640,115 +9641,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9756,78 +9757,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9835,7 +9836,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9843,42 +9844,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9886,33 +9887,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9921,242 +9922,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10164,99 +10165,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10264,18 +10265,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10283,61 +10284,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10346,7 +10347,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10354,18 +10355,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10373,11 +10374,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10385,86 +10386,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11190,35 +11191,35 @@ msgstr "" msgid "Showing tables" msgstr "എല്ലാം കാണിക്കൂ" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11241,7 +11242,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11293,51 +11294,51 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add/Delete columns" msgid "Move columns" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -11822,8 +11823,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -11941,8 +11942,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/mn.po b/po/mn.po index 58552a0813..63ad2b52bd 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" -"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -36,53 +36,54 @@ msgstr "" "Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл " "таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Хайх" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Яв" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Түлхүүрийн нэр" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Тайлбар" @@ -113,13 +114,13 @@ msgstr "ӨС-ийн тайлбар: " msgid "Table comments" msgstr "Хүснэгтийн тайлбар" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -130,30 +131,30 @@ msgstr "Хүснэгтийн тайлбар" msgid "Column" msgstr "Баганын нэрс" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Төрөл" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -191,8 +192,8 @@ msgstr "Холбоос" msgid "Comments" msgstr "Тайлбар" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -201,15 +202,15 @@ msgstr "Тайлбар" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Үгүй" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -224,8 +225,8 @@ msgstr "Үгүй" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -240,11 +241,11 @@ msgstr "ӨС-ийн схем харах" msgid "No tables found in database." msgstr "ӨС-д хүснэгт олдсонгүй." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Бүгдийг сонгох" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Бүх сонгосныг болих" @@ -325,12 +326,12 @@ msgstr "Тогтмол нэмэх" msgid "Switch to copied database" msgstr "Хуулагдсан ӨС руу шилжих" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Жишилт" @@ -358,17 +359,17 @@ msgstr "Хамааралтай схем" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Хүснэгт " #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Мөрүүд" @@ -383,21 +384,21 @@ msgstr "хэрэглэгдэж байна" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Үүсгэлт" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Сүүлийн шинэчлэл" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Сүүлийн шалгалт" @@ -462,7 +463,7 @@ msgid "Del" msgstr "Устгах" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Эсвэл" @@ -507,60 +508,28 @@ msgstr "Асуултыг илгээх" msgid "Access denied" msgstr "Хандах эрхгүй" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "Үгүүдийн ядаж нэгээр" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "бүх үг" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "яг цав өгүүлбэр" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Хайлтын үр дүн \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" -msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Хөтлөх" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Хүснэгтийн өгөгдлийг устгах" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Устгах" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -568,31 +537,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Нийт: %s олдоц(ууд)" msgstr[1] "Нийт: %s олдоц(ууд)" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" +msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Хөтлөх" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Хүснэгтийн өгөгдлийг устгах" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Устгах" + +#: db_search.php:362 msgid "Search in database" msgstr "Өгөгдлийн санд хайх" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Хайх:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Хүснэгт(үүд) дотор:" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -635,8 +636,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -644,7 +645,7 @@ msgstr "" msgid "View" msgstr "Харц" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -654,97 +655,93 @@ msgstr "Олшруулалт" msgid "Sum" msgstr "Нийт" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Сонгогдсонтой:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Бүгдийг чагтлах" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Бүх чагтыг болих" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Гаргах" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Хоосон" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Устгах" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Хүснэгт шалгах" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Хүснэгтийг зүгшрүүлэх" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Хүснэгт засах" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Хүснэгтийг задлах" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Өгөгдлийн толь" @@ -757,9 +754,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "ӨС" @@ -776,17 +773,17 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Статус" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Үйлдэл" @@ -818,7 +815,7 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "" @@ -967,8 +964,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1031,13 +1028,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Таны SQL-асуулт амжилттай ажиллав" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Өмнөх" @@ -1135,8 +1132,8 @@ msgstr "Нууц үг хоосон байна!" msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1160,7 +1157,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1191,13 +1188,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Нийт" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1229,7 +1226,7 @@ msgstr "Сервэр сонго" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Процессууд" @@ -1301,13 +1298,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "кБ" @@ -1369,7 +1366,7 @@ msgstr "" msgid "Bytes received" msgstr "Ирсэн" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Холболт" @@ -1411,11 +1408,11 @@ msgstr "%s хүснэгт(үүд)" msgid "Questions" msgstr "Хамаарал" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Гуйвуулга" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1442,8 +1439,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Байхгүй" @@ -1543,7 +1540,7 @@ msgstr "Ерөнхий хамаатай онцлог" msgid "Current settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1633,7 +1630,7 @@ msgstr "SQL тайлбар" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Цаг" @@ -1742,10 +1739,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Оруулах" @@ -1803,9 +1800,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Болих" @@ -1835,9 +1832,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Бэлэн" @@ -1945,7 +1942,7 @@ msgstr "%s-г устгаж байна" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1990,8 +1987,8 @@ msgstr "SQL асуудал харуулах" msgid "No rows selected" msgstr "Сонгогдсон мөргүй" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Солих" @@ -2006,7 +2003,7 @@ msgid "%d is not valid row number." msgstr "%d нь мөрийн буруу дугаар байна." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2579,16 +2576,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "секундэд" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "минутад" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "цагт" @@ -2702,8 +2699,8 @@ msgstr "Түлхүүрээр эрэмбэлэх" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Сонголтууд" @@ -2764,7 +2761,7 @@ msgid "The row has been deleted" msgstr "Мөр устгагдсан" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Алах" @@ -2791,31 +2788,31 @@ msgstr "Нийт" msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Холбоос олдсонгүй" @@ -2886,55 +2883,55 @@ msgstr "Энэ газарт Cookies нээлттэй байх ёстой." msgid "Javascript must be enabled past this point" msgstr "Энэ газарт Cookies нээлттэй байх ёстой." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Индекс тодорхойлогдоогүй!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индексүүд" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Үл давтагдах" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Ерөнхий" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Үндсэн түлхүүр устгагдлаа" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s нь устгагдсан" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Өгөгдлийн сангууд" @@ -2944,7 +2941,7 @@ msgstr "Өгөгдлийн сангууд" msgid "Server" msgstr "Сервэр" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2957,104 +2954,104 @@ msgstr "Сервэр" msgid "Structure" msgstr "Бүтэц" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Оруулах" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Хүснэг хоосон үзэгдэж байна!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Өгөгдлийн сан хоосон санагдаж байна!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Асуулт (Query)" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Онцгой эрхүүд" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дизайнч" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Хэрэглэгч" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Хоёртын log" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Утгууд" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Кодлолууд" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Хөдөлгүүрүүд" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Алдаа" @@ -3104,74 +3101,74 @@ msgstr "Хүснэгтүүд сонго" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Энд уг агуулах хөдөлгүүрийн дэлгэрэнгүй төлвийн мэдээлэл алга." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s нь уг MySQL сервэрт идэвхтэй байна." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s нь уг MySQL сервэр дээр хаалттай байна." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Дагавар төлвийг харуулах" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Сэдэв %s олдсонгүй!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Буруу өгөгдлийн сан" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Хүснэгтийн буруу нэр" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3179,22 +3176,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Функц" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Оператор" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Утга" @@ -3204,7 +3201,7 @@ msgstr "Утга" msgid "Table Search" msgstr "Хайх" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3340,14 +3337,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3607,11 +3604,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/auth/config.auth.lib.php:98 #, 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$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." +"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1" +"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3719,12 +3716,12 @@ msgstr "Хүснэгт" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Өгөгдөл" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Толгой дээр" @@ -3844,18 +3841,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-асуулт" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3947,7 +3944,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3958,8 +3955,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" @@ -4155,7 +4152,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4436,7 +4433,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Тогтнол" @@ -4754,7 +4751,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Сервэрүүд" @@ -6017,7 +6014,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "in query" msgid "Retain query box" @@ -6331,7 +6328,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6339,17 +6336,17 @@ msgid "" "configured)." msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервэрээс хариу алга" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6408,8 +6405,8 @@ msgstr "Хүснэгт үүсгэх" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Нэр" @@ -6534,19 +6531,19 @@ msgstr "" #| "will be kept as is." 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 -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " -"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" +"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Файлын кодлол:" @@ -7054,8 +7051,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7131,7 +7128,7 @@ msgstr "Үзэгдэл" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7208,7 +7205,7 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Хост" @@ -7417,8 +7414,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." @@ -7589,79 +7586,79 @@ msgstr "SQL нийцтэй горим" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Нуух" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Хоёртын " -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "ause of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Яагаад гэвэл урт нь их,
    энэ талбар засагдахгүй " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Хоёртын өгөгдөл - засагдахгүй " -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "web-сервэр түлхэх хавтас" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "ба тэгээд" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Буцах" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7689,7 +7686,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Илгээ" @@ -7709,7 +7706,7 @@ msgstr "Шинэ талбар нэмэх" msgid "Do you really want to execute the following query?" msgstr "Та үнэхээр " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Солигдохгүй" @@ -7964,7 +7961,7 @@ msgid "" msgstr "" "Column_comments Хүснэгтийн хэрхэн шинэчлэх талаар баримтжууллаас харна уу" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Тэмдэглэгдсэн SQL-асуулт" @@ -8011,6 +8008,10 @@ msgstr "" msgid "no description" msgstr "тайлбаргүй" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Бүх чагтыг болих" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -8045,8 +8046,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Хувьсагч" @@ -8071,7 +8072,7 @@ msgstr "Дурын хэрэглэгч" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" @@ -8102,10 +8103,10 @@ msgid "Generate Password" msgstr "Нууц үг бий болгох" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8116,7 +8117,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8133,7 +8134,7 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Event %1$s has been created." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8144,16 +8145,16 @@ msgstr "" msgid "Edit event" msgstr "Үзэгдэл" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процессууд" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8168,7 +8169,7 @@ msgstr "Хэрэг явдлын төрөл" msgid "Event type" msgstr "Хэрэг явдлын төрөл" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8202,13 +8203,13 @@ msgstr "Төгс" msgid "On completion preserve" msgstr "Оруулалтыг дуусгах" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8233,7 +8234,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8255,7 +8256,7 @@ msgstr "" msgid "Returns" msgstr "Хүснэгтийн сонголтууд" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8263,143 +8264,143 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been created." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Баганын нэрс" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Шууд холбоос" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Урт/Утгууд*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Шинэ талбар нэмэх" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Урт/Утгууд*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Хүснэгтийн сонголтууд" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Асуултын төрөл" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8726,7 +8727,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Үл мэдэгдэх хэл: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8759,52 +8760,52 @@ msgstr "" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "%s сервэр дээр SQL асуудал/асуудлууд ажиллуулах" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Цонхны гаднаас энэ асуултыг давхарлахгүй байх" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Зааглагч" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Уг асуултыг энд дахин харуулах " -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Зөвхөн харах" @@ -8901,7 +8902,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Индекс" @@ -8955,12 +8956,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Үндсэн" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Бүтэнбичвэр" @@ -8974,13 +8975,13 @@ msgstr "" msgid "after %s" msgstr "%s-ы дараа" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s талбар(ууд) нэмэх" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9041,7 +9042,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Уг зургийн холбоосыг харуулж байна (direct blob download, i.e.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9240,8 +9241,8 @@ msgid "Protocol version" msgstr "Протоколын хувилбар" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Хэрэглэгч" @@ -9371,17 +9372,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "ӨС байхгүй" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "хүснэгтийн нэр" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9406,7 +9407,7 @@ msgstr "Харуулах/Нуух зүүн цэс" msgid "Save position" msgstr "Байрлал хадгалах" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Холбоо үүсгэх" @@ -9470,49 +9471,49 @@ msgstr "Нуух/Харуулах Холбоо байхгүй Хүснэгтүү msgid "Number of tables" msgstr "Хүснэгтийн тоо" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Холбоог устгах" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Холбоо устав" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Гаргах" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "асуултад" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename table to" msgid "Rename to" msgstr "Хүснэгтийг да.нэрлэх" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Хэрэглэгчийн нэр" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Үүсгэх" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9690,13 +9691,13 @@ msgstr "Харах хоёртын log сонго" msgid "Files" msgstr "Файлууд" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" @@ -9712,7 +9713,7 @@ msgstr "Байрлал" msgid "Original position" msgstr "Жинхэнэ байрлал" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Мэдээлэл" @@ -9741,11 +9742,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Нээлттэй статистик" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9994,7 +9995,7 @@ msgid "None" msgstr "Байхгүй" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Хүснэгтийн тусгай онцгой эрхүүд" @@ -10011,7 +10012,7 @@ msgstr "Зохион байгуулалт" msgid "Global privileges" msgstr "Глобал онцгой эрх" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Онцгой эрх, өгөгдлийн сангийн эрх" @@ -10031,7 +10032,7 @@ msgstr "Нэвтрэх мэдээлэл" msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10082,7 +10083,7 @@ msgstr "Сонгогдсон хэрэглэгч устгагдлаа." msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Онцгой эрхүүдийг засах" @@ -10097,7 +10098,7 @@ msgid "Export all" msgstr "Гаргах" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Дурын" @@ -10119,81 +10120,81 @@ msgstr "Онцгой эрхүүд" msgid "Users overview" msgstr "User overview" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Хандив" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " "болгох." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 үргэлжлүүлнэ үү." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... хуучныг үлдээх." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... хэрэглэгчийн хүснэгтүүдээс устгах." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10201,41 +10202,41 @@ msgstr "" " ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Хэрэглэгчдийн хандсан нь "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "загвар" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10516,50 +10517,50 @@ msgstr "Нээлттэй хүснэгтүүдийг харуулах" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Хамаарал" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Асуултын төрөл" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Мэдээлэл" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10567,102 +10568,102 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Баримтжуулал" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Ирсэн" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Илгээгдэв" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "ХИ. давхацсан холболтууд" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Бүтэлгүйтсэн оролдлого" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Таслагдсан" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Команд" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "its the number of simultaneous connections the user may have." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10672,16 +10673,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10693,11 +10694,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10705,7 +10706,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10713,7 +10714,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10721,23 +10722,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10747,7 +10748,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10757,7 +10758,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10765,7 +10766,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10775,7 +10776,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10783,7 +10784,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY ... DESC-д хэрэглэгддэг." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10795,7 +10796,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10807,35 +10808,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10845,7 +10846,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10857,11 +10858,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10869,7 +10870,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10877,11 +10878,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10889,7 +10890,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10898,244 +10899,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Оруулсан файлын тогтнол" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11143,99 +11144,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11243,18 +11244,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11262,69 +11263,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Түлхүүрийн нөөцлөл" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Шинэ талбар нэмэх" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Да.дуудах" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Багана нэмэх/устгах" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 #, fuzzy msgid "Monitor Instructions" msgstr "Мэдээлэл" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11333,7 +11334,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11341,18 +11342,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11360,11 +11361,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11372,93 +11373,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Хүснэгтүүд сонго" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Хүснэгтийн буруу нэр" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Шинэ хэрэглэгч нэмэх" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Мөрийн статистик" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Бүгдийг сонгох" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Асуултын төрөл" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11466,7 +11467,7 @@ msgid_plural "%d seconds" msgstr[0] "секундэд" msgstr[1] "секундэд" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12236,35 +12237,35 @@ msgstr "Үнэн зөв өгөгдлийг шалгах:" msgid "Showing tables" msgstr "Хүснэгтүүдийг харуулах" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Ашиглалтын зай" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Эффекттэй" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Мөрийн статистик" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "динамик" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Мөрийн урт" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Мөрийн хэмжээ " -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12289,7 +12290,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12348,56 +12349,56 @@ msgstr "%s-д индекс нэмэгдсэн байна" msgid "Show more actions" msgstr "PHP -ийн мэдээлэл харах" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "%s талбар(ууд) нэмэх" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Хэвлэхээр харах" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Хамаарал харах" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Хүснэгтийн бүтцийг таниулах" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s талбар(ууд) нэмэх" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Хүснэгтийн төгсгөлд" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Хүснэгтийн эхэнд" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s-ы дараа" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s багануудад индекс үүсгэх" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12925,8 +12926,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13058,8 +13059,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13996,8 +13997,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 f1d0b9280b..799e676436 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: malay \n" -"Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ms\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" @@ -35,53 +35,54 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Cari" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Pergi" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nama Kekunci" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Keterangan" @@ -115,13 +116,13 @@ msgstr "Komen jadual" msgid "Table comments" msgstr "Komen jadual" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Komen jadual" msgid "Column" msgstr "Nama Kolum" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Jenis" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Pautan ke" msgid "Comments" msgstr "Komen" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Komen" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Tidak" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Tidak" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Lihat longgokan (skema) pangkalan data" msgid "No tables found in database." msgstr "Tiada jadual dijumpai pada pangkalan data." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Sila pilih pangkalan data" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Nyahpilih Semua" @@ -326,12 +327,12 @@ msgstr "" msgid "Switch to copied database" msgstr "Tukar kepada pengkalan data yang di salin" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "" @@ -359,17 +360,17 @@ msgstr "Skema Hubungan" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Jadual" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Baris" @@ -384,7 +385,7 @@ msgstr "sedang digunakan" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 #, fuzzy msgid "Creation" msgstr "Cipta" @@ -392,14 +393,14 @@ msgstr "Cipta" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Semakan Terakhir" @@ -463,7 +464,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Atau" @@ -508,60 +509,28 @@ msgstr "Hantar Kueri" msgid "Access denied" msgstr "Akses dinafikan" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "sekurang-kurangnya satu perkataan" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "semua perkataan" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "Frasa tepat" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "sebagai penyataan regular (regexp)" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil carian bagi \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s padanan di dalam jadual %s" -msgstr[1] "%s padanan di dalam jadual %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Lungsur" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Melonggok data bagi jadual" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Padam" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -569,31 +538,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Jumlah: %s padanan" msgstr[1] "Jumlah: %s padanan" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s padanan di dalam jadual %s" +msgstr[1] "%s padanan di dalam jadual %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Lungsur" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Melonggok data bagi jadual" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Padam" + +#: db_search.php:362 msgid "Search in database" msgstr "Cari di pangkalan data" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Perkataan atau nilai untuk dicari (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Cari:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Di dalam jadual:" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -636,8 +637,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -645,7 +646,7 @@ msgstr "" msgid "View" msgstr "" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -655,97 +656,93 @@ msgstr "" msgid "Sum" msgstr "Jumlah" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Tanda Semua" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Nyahtanda Semua" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Kosong" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Gugur" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Periksa Jadual" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimakan jadual" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Baiki jadual" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Ganti data jadual dengan fail" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Ganti data jadual dengan fail" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Kamus Data" @@ -758,9 +755,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Pangkalan Data" @@ -778,17 +775,17 @@ msgstr "Cipta" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Aksi" @@ -822,7 +819,7 @@ msgstr "Struktur sahaja" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Periksa Jadual" @@ -971,8 +968,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1035,13 +1032,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Undur" @@ -1134,8 +1131,8 @@ msgstr "Katalaluan adalah kosong!" msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1156,7 +1153,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1186,13 +1183,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1224,7 +1221,7 @@ msgstr "Pilihan Pelayan" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Proses-proses" @@ -1290,13 +1287,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1354,7 +1351,7 @@ msgstr "" msgid "Bytes received" msgstr "DiTerima" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Hubungan" @@ -1395,11 +1392,11 @@ msgstr "%s jadual" msgid "Questions" msgstr "Operasi" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Kesibukan" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1425,8 +1422,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Tiada" @@ -1526,7 +1523,7 @@ msgstr "Ciri-ciri hubungan am" msgid "Current settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy msgid "Chart Title" msgstr "Tiada Jadual" @@ -1611,7 +1608,7 @@ msgstr "Terangkan Kod SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Masa" @@ -1715,10 +1712,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" @@ -1773,9 +1770,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1806,9 +1803,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1907,7 +1904,7 @@ msgstr "Padam" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1949,8 +1946,8 @@ msgstr "kueri-SQL" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Ubah" @@ -1965,7 +1962,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2534,16 +2531,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "per jam" @@ -2658,8 +2655,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Operasi" @@ -2721,7 +2718,7 @@ msgid "The row has been deleted" msgstr "Baris telah dipadam" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Bunuh" @@ -2748,30 +2745,30 @@ msgstr "jumlah" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Pautan tidak dijumpai" @@ -2842,56 +2839,56 @@ msgstr "Cecikut mestilah dihidupkan ketika ini." msgid "Javascript must be enabled past this point" msgstr "Cecikut mestilah dihidupkan ketika ini." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Tiada indeks ditafrifkan!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinaliti" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Komen" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Kekunci utama telah digugurkan" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s telah digugurkan" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "pangkalan data" @@ -2901,7 +2898,7 @@ msgstr "pangkalan data" msgid "Server" msgstr "Pelayan" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2914,105 +2911,105 @@ msgstr "Pelayan" msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Selit" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Kueri" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilej" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Pengguna" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binari" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Pemboleh-pembolehubah" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Ralat" @@ -3055,71 +3052,71 @@ msgstr "Tiada Jadual" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Cari di pangkalan data" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Cari di pangkalan data" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Jadual %s telah ditukarnama ke %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3127,23 +3124,23 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Fungsi" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "Operasi" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Nilai" @@ -3153,7 +3150,7 @@ msgstr "Nilai" msgid "Table Search" msgstr "Cari" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3288,14 +3285,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3552,8 +3549,8 @@ msgstr "Selamat Datang ke %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3661,12 +3658,12 @@ msgstr "Jadual-jadual" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Melebihi" @@ -3780,18 +3777,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "kueri-SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3879,7 +3876,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3890,8 +3887,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" @@ -4088,7 +4085,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4363,7 +4360,7 @@ msgid "Character set of the file" msgstr "Fail bagi set Aksara:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4681,7 +4678,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5936,7 +5933,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "kueri-SQL" @@ -6250,21 +6247,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6322,8 +6319,8 @@ msgstr "Cipta Halaman baru" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nama" @@ -6443,8 +6440,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:285 @@ -6452,7 +6449,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Fail bagi set Aksara:" @@ -6930,8 +6927,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7002,7 +6999,7 @@ msgstr "Hantar" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7074,7 +7071,7 @@ msgstr "Paparkan Ciri-ciri" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Hos" @@ -7278,8 +7275,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)" @@ -7444,78 +7441,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Kerana kepanjangannya,
    medan ini tidak boleh diedit " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binari - jgn diubah" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "direktori muatnaik pelayan-web" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7543,7 +7540,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Hantar" @@ -7561,7 +7558,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Adakah anda ingin " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Tiada perubahan" @@ -7814,7 +7811,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Tandabuku kueri-SQL" @@ -7861,6 +7858,10 @@ msgstr "" msgid "no description" msgstr "tiada keterangan" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Nyahtanda Semua" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7896,8 +7897,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Pembolehubah" @@ -7923,7 +7924,7 @@ msgstr "Sebarang pengguna" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7954,10 +7955,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7968,7 +7969,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7984,7 +7985,7 @@ msgstr "Jadual %s telah digugurkan" msgid "Event %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7994,16 +7995,16 @@ msgstr "" msgid "Edit event" msgstr "Hantar" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proses-proses" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8018,7 +8019,7 @@ msgstr "Jenis Kueri" msgid "Event type" msgstr "Jenis Kueri" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8051,13 +8052,13 @@ msgstr "Tamat" msgid "On completion preserve" msgstr "Kemasukkan Selesai" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8082,7 +8083,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8103,7 +8104,7 @@ msgstr "" msgid "Returns" msgstr "Statistik pangkalan data" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8111,135 +8112,135 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Nama Kolum" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy msgid "Direction" msgstr "Cipta" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Panjang/Nilai*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy msgid "Remove last parameter" msgstr "Tukarnama jadual ke" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Panjang/Nilai*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy msgid "Return options" msgstr "Statistik pangkalan data" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Jenis Kueri" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8551,7 +8552,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8586,52 +8587,52 @@ msgstr "Cari di pangkalan data" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Laksana kueri SQL pada pangkalan data %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Laksana kueri SQL pada pangkalan data %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Papar kueri ini di sini lagi" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Paparan sahaja" @@ -8738,7 +8739,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -8792,12 +8793,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Utama" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Tekspenuh" @@ -8811,12 +8812,12 @@ msgstr "" msgid "after %s" msgstr "Selepas %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Tambah medan baru" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8863,7 +8864,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9013,8 +9014,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Pengguna" @@ -9138,17 +9139,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Tiada pangkalan data" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Alter table order by" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9172,7 +9173,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9235,47 +9236,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Paparan Hubungan" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksport" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "pada kueri" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Tukarnama jadual ke" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Kata Pengenalan" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Cipta" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy msgid "Active options" msgstr "Aksi" @@ -9448,13 +9449,13 @@ msgstr "" msgid "Files" msgstr "Medan" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9470,7 +9471,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -9499,12 +9500,12 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 #, fuzzy msgid "Enable Statistics" msgstr "Statistik pangkalan data" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9750,7 +9751,7 @@ msgid "None" msgstr "Tiada" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9768,7 +9769,7 @@ msgstr "" msgid "Global privileges" msgstr "Tiada Privilej" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9789,7 +9790,7 @@ msgstr "Informasi MasaJana" msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9840,7 +9841,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Ubah Privilej" @@ -9855,7 +9856,7 @@ msgid "Export all" msgstr "Eksport" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Sebarang" @@ -9875,116 +9876,116 @@ msgstr "Privilej" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 #, fuzzy msgid "Grant" msgstr "Cetak" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy msgid "User has been added." msgstr "Medan %s telah digugurkan" @@ -10267,48 +10268,48 @@ msgstr "Papar jadual" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "Papar jadual" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy msgid "Related links:" msgstr "Operasi" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Jenis Kueri" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Fungsi" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10316,117 +10317,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Penyataan" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "DiTerima" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Hantar" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Percubaan Gagal" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "DiBatalkan" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Arahan" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10434,78 +10435,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10513,7 +10514,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10521,42 +10522,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10564,33 +10565,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10599,243 +10600,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fail bagi set Aksara:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10843,99 +10844,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10943,18 +10944,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10962,68 +10963,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Jenis Kueri" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sab" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy msgid "Add chart" msgstr "Tambah medan baru" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Dijana oleh" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Tambah/Padam Kolum Medan" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11032,7 +11033,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11040,18 +11041,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11059,11 +11060,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11071,89 +11072,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy msgid "Preset chart" msgstr "Tukarnama jadual ke" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Pilih Jadual" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Tambah Pengguna Baru" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "kueri-SQL" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Statistik Baris" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Sila pilih pangkalan data" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Jenis Kueri" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Records" msgid "%d second" @@ -11161,7 +11162,7 @@ msgid_plural "%d seconds" msgstr[0] "Rekod" msgstr[1] "Rekod" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11930,35 +11931,35 @@ msgstr "Semak integriti rujukan:" msgid "Showing tables" msgstr "Papar jadual" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Penggunaan ruang" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Berkesan" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistik Baris" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Panjang baris" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Saiz baris" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11982,7 +11983,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12039,54 +12040,54 @@ msgstr "Indeks telah ditambah pada %s" msgid "Show more actions" msgstr "Papar maklumat PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy msgid "Move columns" msgstr "Tambah medan baru" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Paparan Cetak" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Paparan Hubungan" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Cadangkan struktur jadual" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy msgid "Add column" msgstr "Tambah medan baru" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Pada Akhir Jadual" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Pada Awalan Jadual" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Selepas %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Cipta indeks pada  %s " -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12596,8 +12597,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12723,8 +12724,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/nb.po b/po/nb.po index 9eaaf6dca6..4eb6005d6a 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:22+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: Weblate 1.0\n" @@ -37,53 +37,54 @@ msgstr "" "Målvinduet kunne ikke oppdateres. Muligens du har lukket modervinduet eller " "din nettleser blokkerer vindu-til-vindu oppdateringer av sikkerhetsårsaker." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Søk" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Utfør" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nøkkel" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Beskrivelse" @@ -116,13 +117,13 @@ msgstr "Database kommentar: " msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "Tabellkommentarer" msgid "Column" msgstr "Kolonne" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "Kommentarer" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nei" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "Nei" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "Vis dump (skjema) av database" msgid "No tables found in database." msgstr "Ingen tabeller i databasen." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Velg alle" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Fjern alle valgte" @@ -322,12 +323,12 @@ msgstr "Legg til begrensninger" msgid "Switch to copied database" msgstr "Bytt til kopiert database" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Sammenligning" @@ -349,17 +350,17 @@ msgstr "Rediger eller eksporter relasjonsskjema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabell" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rader" @@ -374,21 +375,21 @@ msgstr "i bruk" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Opprettet" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Sist oppdatert" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Sist kontrollert" @@ -451,7 +452,7 @@ msgid "Del" msgstr "Slett" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Eller" @@ -492,87 +493,87 @@ msgstr "Kjør spørring" msgid "Access denied" msgstr "Ingen tilgang" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "minst ett av ordene" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "alle ordene" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "med den nøyaktige setningen" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "som \"regular expression\"" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søkeresultat for \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s treff i tabell %s" -msgstr[1] "%s treff i tabell %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Se på" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Slett treffene for %s tabellen?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Slett" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totalt: %s treff" msgstr[1] "Totalt: %s treff" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s treff i tabell %s" +msgstr[1] "%s treff i tabell %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Se på" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Slett treffene for %s tabellen?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Slett" + +#: db_search.php:362 msgid "Search in database" msgstr "Søk i database" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller verdier å søke med (jokertegn: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Finn:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Ord er separert med et mellomrom (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "I tabellene:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "I kolonne:" @@ -611,8 +612,8 @@ msgstr "Overvåkning er ikke aktiv." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -620,7 +621,7 @@ msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." msgid "View" msgstr "Vis" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -630,93 +631,89 @@ msgstr "Replikering" msgid "Sum" msgstr "Sum" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Med avkrysset:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Merk alle" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Fjern merking" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Merk overheng" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tøm" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Slett" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Kontroller tabell" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimiser tabell" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Reparer tabell" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyser tabell" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Legg prefiks til tabell" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Erstatt tabellprefiks" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopier tabell med prefiks" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dataordbok" @@ -729,9 +726,9 @@ msgstr "Overvåkede tabeller" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Database" @@ -748,17 +745,17 @@ msgstr "Opprettet" msgid "Updated" msgstr "Oppdatert" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Handling" @@ -790,7 +787,7 @@ msgstr "Strukturøyeblikksbilde" msgid "Untracked tables" msgstr "Ikke overvåkede tabeller" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Overvåk tabell" @@ -927,8 +924,8 @@ msgstr "" #: import.php:86 #, 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 forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." @@ -1005,13 +1002,13 @@ msgstr "" "øker php tidsgrensen." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Kommandoen/spørringen er utført" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Tilbake" @@ -1096,8 +1093,8 @@ msgstr "Passordet er blankt!" msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Legg til bruker" @@ -1115,7 +1112,7 @@ msgid "Close" msgstr "Lukk" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1142,13 +1139,13 @@ msgstr "Statistikkdata" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Annet" @@ -1178,7 +1175,7 @@ msgstr "Servertrafikk (i KiB)" msgid "Connections since last refresh" msgstr "Tilkoblinger siden sist oppdatering" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Prosesser" @@ -1238,13 +1235,13 @@ msgstr "System swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1296,7 +1293,7 @@ msgstr "Bytes sendt" msgid "Bytes received" msgstr "Bytes mottatt" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "tilkoblinger" @@ -1335,11 +1332,11 @@ msgstr "%d tabell(er)" msgid "Questions" msgstr "Spørringer" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafikk" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Innstillinger" @@ -1362,8 +1359,8 @@ msgstr "Legg minst én variabel til serien" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Ingen" @@ -1468,7 +1465,7 @@ msgstr "Endre dine innstillinger" msgid "Current settings" msgstr "Flere innstillinger" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1562,7 +1559,7 @@ msgstr "Forklar SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Tid" @@ -1671,10 +1668,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1734,9 +1731,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Avbryt" @@ -1764,9 +1761,9 @@ msgstr "Dropper kolonne" msgid "Adding Primary Key" msgstr "Legger til primærnøkkel" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1862,7 +1859,7 @@ msgstr "Sletter %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" @@ -1902,8 +1899,8 @@ msgstr "Vis spørringsboks" msgid "No rows selected" msgstr "Ingen rader valgt" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Endre" @@ -1920,7 +1917,7 @@ msgid "%d is not valid row number." msgstr "%d er ikke et gyldig radnummer." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2441,16 +2438,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "per sekund" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "per minutt" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "per time" @@ -2567,8 +2564,8 @@ msgstr "Sorter etter nøkkel" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Innstillinger" @@ -2627,7 +2624,7 @@ msgid "The row has been deleted" msgstr "Raden er slettet" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Avslutt" @@ -2654,31 +2651,31 @@ msgstr "totalt" msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Vis PDF-skjema" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Opprett bruker" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Link ikke funnet" @@ -2754,46 +2751,46 @@ msgstr "Cookies må være slått på forbi dette punkt." msgid "Javascript must be enabled past this point" msgstr "Cookies må være slått på forbi dette punkt." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Ingen indeks definert!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indekser" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primærnøkkelen har blitt slettet" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indeksen %s har blitt slettet" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2802,9 +2799,9 @@ msgstr "" "Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne " "fjernes." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Databaser" @@ -2814,7 +2811,7 @@ msgstr "Databaser" msgid "Server" msgstr "Tjener" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2827,104 +2824,104 @@ msgstr "Tjener" msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Sett inn" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operasjoner" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Overvåkning" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggere" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabellen ser ut til å være tom!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Databasen ser ut til å være tom!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Spørring ved eksempel (Query by Example)" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegier" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Hendelser" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Bruker" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synkroniser" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binærlogg" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Tegnsett" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motorer" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Feil" @@ -2974,76 +2971,76 @@ msgstr "Tell tabeller" msgid "There are no recent tables" msgstr "Der finnes ingen konfigurerte tjenere" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s er tilgjengelig på denne MySQL theneren." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s har blitt dekativert for denne MySQL tjeneren." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Vis slavestatus" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Kildedatabase" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Stilen %s ble ikke funnet!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Ugylding database" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Ugylding tabellnavn" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabellen %s har fått nytt navn %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3051,22 +3048,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funksjon" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Verdi" @@ -3076,7 +3073,7 @@ msgstr "Verdi" msgid "Table Search" msgstr "Søk" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3214,14 +3211,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3481,8 +3478,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør " "kanskje bruke %1$ssetup script%2$s for å opprette en." @@ -3598,12 +3595,12 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Overheng" @@ -3718,18 +3715,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-spørring" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3821,7 +3818,7 @@ msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" msgid "Click to toggle" msgstr "Klikk for å velge" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" @@ -3831,8 +3828,8 @@ msgstr "Bla gjennom datamaskinen:" msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" @@ -4017,7 +4014,7 @@ msgstr "Gjennopprett standard verdi" msgid "Allow users to customize this value" msgstr "Tillat brukere å endre denne verdien" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4308,7 +4305,7 @@ msgid "Character set of the file" msgstr "Filas tegnsett" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4606,7 +4603,7 @@ msgstr "Navigasjonsramme" msgid "Customize appearance of the navigation frame" msgstr "Endre utseendet til navigasjonsrammen" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Tjenere" @@ -5968,7 +5965,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6299,7 +6296,7 @@ msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6307,17 +6304,17 @@ msgid "" "configured)." msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Tjeneren svarer ikke" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detaljer..." @@ -6375,8 +6372,8 @@ msgstr "Opprett tabell" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Navn" @@ -6480,8 +6477,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet" #| "will be kept as is." 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 "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -6492,7 +6489,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Filens tegnsett:" @@ -7025,8 +7022,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7098,7 +7095,7 @@ msgstr "Hendelse" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7167,7 +7164,7 @@ msgstr "Vis MIME-typer" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Vert" @@ -7376,8 +7373,8 @@ msgstr "Eksporter innhold" msgid "No data found for GIS visualization." msgstr "Ingen data funnet for graf." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." @@ -7564,80 +7561,80 @@ msgstr "SQL kompatibilitetsmodus" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Skjul" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binær" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" " På grunn av sin lengde,
    så vil muligens denne kolonnen ikke være " "redigerbar" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binær - må ikke redigeres" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "webtjener opplastingskatalog" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Restarte innsettinga med %s rader" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "og så" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Returner" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Rediger neste rad" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" @@ -7663,7 +7660,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Send" @@ -7683,7 +7680,7 @@ msgstr "Utfør indeks(er)" msgid "Do you really want to execute the following query?" msgstr "Vil du virkelig " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Ingen endring" @@ -7937,7 +7934,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Les i dokumentasjonen hvordan du oppdaterer din Column_comments tabell" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Lagret SQL-spørring" @@ -7990,6 +7987,10 @@ msgstr "" msgid "no description" msgstr "ingen beskrivelse" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Fjern merking" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Slavekonfigurasjon" @@ -8026,8 +8027,8 @@ msgstr "Masterstatus" msgid "Slave status" msgstr "Slavestatus" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variabler" @@ -8054,7 +8055,7 @@ msgstr "Alle brukere" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Bruk tekstfelt" @@ -8087,10 +8088,10 @@ msgid "Generate Password" msgstr "Generer passord" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8102,7 +8103,7 @@ msgstr "Følgende spørringer har blitt utført:" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8119,7 +8120,7 @@ msgstr "Kolonne %s har blitt slettet" msgid "Event %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8130,16 +8131,16 @@ msgstr "" msgid "Edit event" msgstr "Rediger tjener" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Feil i prosesseringsforespørsel" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -8156,7 +8157,7 @@ msgstr "Hendelsestype" msgid "Event type" msgstr "Hendelsestype" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8190,13 +8191,13 @@ msgstr "Slutt" msgid "On completion preserve" msgstr "Komplette inserts" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8221,7 +8222,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8243,7 +8244,7 @@ msgstr "" msgid "Returns" msgstr "Returtype" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8251,145 +8252,145 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Kolonne %s har blitt slettet" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redigeringsmodus" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutiner" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Direkte linker" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lengde/Sett*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Utfør indeks(er)" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Fjern database" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Returtype" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lengde/Sett*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabellinnstillinger" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Sikkerhet" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Tillater utføring av lagrede rutiner." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8720,7 +8721,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Ukjent språk: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Gjeldende tjener" @@ -8751,50 +8752,50 @@ msgstr "Måldatabase" msgid "Click to select" msgstr "Klikk for å velge" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Fjern" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Erstatt eksisterende bokmerke med samme navn" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Skilletegn" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Vis denne spørring her igjen" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Bare se" @@ -8899,7 +8900,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -8915,8 +8916,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:139 msgid "Transformation options" @@ -8952,12 +8953,12 @@ msgid "As defined:" msgstr "Som definert:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primær" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fulltekst" @@ -8971,12 +8972,12 @@ msgstr "" msgid "after %s" msgstr "Etter %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Legg til %s kolonne(r)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." @@ -9031,7 +9032,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Viser en link til dette bildet (m.a.o. direkte blob-nedlasting)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9213,8 +9214,8 @@ msgid "Protocol version" msgstr "Protokollversjon" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Bruker" @@ -9366,17 +9367,17 @@ msgstr "" "Tjeneren kjører med Suhosin. Sjekk %sdokumentasjonen%s for potensielle " "problemer." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Ingen databaser" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Endre tabellrekkefølge ved" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9399,7 +9400,7 @@ msgstr "Skjul/Vis venstre meny" msgid "Save position" msgstr "Lagre posisjon" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Opprett relasjon" @@ -9463,49 +9464,49 @@ msgstr "Skjul/Vis tabeller uten relasjoner" msgid "Number of tables" msgstr "Antall tabeller" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Slett relasjon" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relasjon slettet" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksporter" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "i spørring" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Endre tabellens navn" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Brukernavn" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Opprett" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9689,13 +9690,13 @@ msgstr "Velg binærlogg for visning" msgid "Files" msgstr "Filer" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Forkort vist spørring" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Vis hele spørringen" @@ -9711,7 +9712,7 @@ msgstr "Posisjon" msgid "Original position" msgstr "Original posisjon" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informasjon" @@ -9740,11 +9741,11 @@ msgstr "Masterreplikasjon" msgid "Slave replication" msgstr "Slavereplikasjon" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Slå på statistikk" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9996,7 +9997,7 @@ msgid "None" msgstr "Ingen" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" @@ -10013,7 +10014,7 @@ msgstr "Administrasjon" msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" @@ -10033,7 +10034,7 @@ msgstr "Innlogingsinformasjon" msgid "Do not change the password" msgstr "Ikke endre passordet" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Ingen bruker(e) funnet." @@ -10082,7 +10083,7 @@ msgstr "De valgte brukerne har blitt slettet." msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Rediger privilegier" @@ -10097,7 +10098,7 @@ msgid "Export all" msgstr "Eksporter" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Alle" @@ -10119,121 +10120,121 @@ msgstr "Privilegier" msgid "Users overview" msgstr "Brukeroversikt" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Rettighet" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Fjern valgte brukere" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Slett databasene som har det samme navnet som brukerne." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Legg til privilegier til følgende database" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Legg til privilegier til følgende tabell" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Opprett ny bruker med de samme privilegier og ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... slett den gamle fra brukertabellene." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Brukerdatabase" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Opprett database med samme navn og gi alle rettigheter" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gi alle privilegier for databasen "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Brukere som har adgang til "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "databasespesifikk" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "jokertegn" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10536,50 +10537,50 @@ msgstr "Vis åpne tabeller" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Vis åpne tabeller" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relasjoner" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Spørringstype" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Informasjon" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10587,33 +10588,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Endre oppstartssiden" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Oversikt" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10621,19 +10622,19 @@ msgstr "" "Denne tjeneren jobber både som tjener og slave i " "replikasjonsprosessen." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Denne tjeneren er konfigurert som tjener i en replikasjonsprosess." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne tjeneren er konfigurert som slave i en replikasjonsprosess." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10641,11 +10642,11 @@ msgstr "" "For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Replikasjonsstatus" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10653,47 +10654,47 @@ msgstr "" "På en travel tjener så kan byte-tellerene overflyte, så denne statistikken " "som rapportert av MySQL tjeneren kan være unøyaktig." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Mottatt" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Sendt" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "maks. samtidige tilkoblinger" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Feilede forsøk" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Avbrutt" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Kommando" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kunne ikke koble til MySQL tjener" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10703,17 +10704,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10725,11 +10726,11 @@ msgstr "" "bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller " "blir lagret i minnet og ikke på harddisken." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10737,7 +10738,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10745,7 +10746,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10753,23 +10754,23 @@ msgstr "" "Antall INSERT DELAYED håndterertråder i bruk. Hver eneste tabell hvor det " "blir brukt INSERT DELAYE får sin egen tråd." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Antall ganger en rad ble slettet fra en tabell." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10779,7 +10780,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10789,7 +10790,7 @@ msgstr "" "er høyt tyder det på at tjeneren utfører en god del fullindekssøk; for " "eksempel, SELECT col1 FROM foo, da forutsatt at col1 er indeksert." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10798,7 +10799,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10809,7 +10810,7 @@ msgstr "" "har sansynligvis mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som ikke bruker nøkler korrekt." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10817,7 +10818,7 @@ msgstr "" "Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne " "lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10829,7 +10830,7 @@ msgstr "" "har mest sansynlig mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som som ikke bruker nøkler korrekt." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10841,37 +10842,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Antall forespørsler for å oppdatere en rad i en tabell." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Antall forespørsler for å sette inn en rad i en tabell." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Antall midlertidige mellomlagersider som det har vært " "oppfriskningsforespørsler på." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Antall tomme sider." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10880,7 +10881,7 @@ msgstr "" "Antallet låste sider i InnoDBs mellomlager. Dette er sider som er under " "lesing eller skriving eller ikke kan tømmes eller fjernes av en annen grunn." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10892,11 +10893,11 @@ msgstr "" "kan også regnes ut som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10904,7 +10905,7 @@ msgstr "" "Antall \"tilfeldige\" \"read-aheads\" InnoDB startet. Dette skjer når en " "spørring skanner en stor andel av en tabell men i en tilfeldig rekkefølge." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10912,11 +10913,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10924,7 +10925,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10938,55 +10939,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10994,35 +10995,35 @@ msgstr "" "Antall ganger ventinger vi hadde fordi loggmellomlageret var for lite og vi " "måtte vente for at det skulle bli tømt før vi kunne fortsette." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11030,51 +11031,51 @@ msgstr "" "Den innkompilerte InnoDB sidestørrelsen (standard 16KB). Mange verdier måles " "i sider; sidestørrelsen gjør at det er lett å konvertere dem til bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Antall ganger en radlås måtte ventes på." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11083,7 +11084,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11091,7 +11092,7 @@ msgstr "" "Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til " "å bestemme hvor mye av nøkkelmellomlageret som er i bruk." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11100,17 +11101,17 @@ msgstr "" "Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål " "som viser maksimum antall blokker som har vært brukt på en gang." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Importfilformat" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Antall forespørsler for å lese en nøkkelblokk fra mellomlageret." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11120,26 +11121,26 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Antall forespørsler for å skrive en nøkkelblokk til mellomlageret." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11150,17 +11151,17 @@ msgstr "" "forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 " "betyr at ingen spørring har blitt kompilert ennå." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antall rader som venter på å bli skrevet i INSERT DELAYED køer." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11168,38 +11169,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11212,7 +11213,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11220,19 +11221,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11240,11 +11241,11 @@ msgstr "" "Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du " "nøye sjekke indeksene til dine tabeller." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Antall joins som trenger en rekkefølgesøk i en referansetabell." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11252,7 +11253,7 @@ msgstr "" "Antall joins uten nøkler som kontrollerer for nøkkelbruk etter hver rad " "(Hvis denne ikke er 0 bør du nøye kontrollere dine tabellindekser.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11260,15 +11261,15 @@ msgstr "" "Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt " "ikke kritisk selv om denne verdien er stor.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Antall joins som utførte en full skann av den første tabellen." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antall midlertidige tabeller for tiden åpnet av slave SQL tråden." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11276,12 +11277,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denne er ON hvis denne tjeneren er en slave som er koblet til en master." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11289,12 +11290,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antall spørringer som har brukt mer enn long_query_time sekunder." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11304,24 +11305,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" "Antall sorteringer som har vært utført ved hjelp av skanning av tabellen." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Antall ganger en tabellåsing ble utført umiddelbart." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11333,7 +11334,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11343,11 +11344,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11358,75 +11359,75 @@ msgstr "" "stor bør du vurdere å øke thread_cache_size størrelsen. (Normalt vil dette " "ikke gi noen merkbar forbedring hvis du har en god trådimplementering.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Overvåkning er ikke aktiv." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "CHAR textarea rows" msgid "Start Monitor" msgstr "CHAR textarea rader" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Utfør indeks(er)" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Oppdater" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea kolonner" -#: server_status.php:1626 +#: server_status.php:1635 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Feilbehandling:" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Gjennopprett standard verdi" -#: server_status.php:1631 +#: server_status.php:1640 #, fuzzy msgid "Monitor Instructions" msgstr "Informasjon" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11435,7 +11436,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11443,18 +11444,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11462,11 +11463,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11474,97 +11475,97 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Fjern database" -#: server_status.php:1679 +#: server_status.php:1690 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Se slavestatustabell" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Velg tabeller" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Ugylding tabellnavn" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Legg til en ny tjener" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL spørringer" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Vis statistikk" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select page" msgid "Selected time range:" msgstr "Velg side" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Spørringstype" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11572,7 +11573,7 @@ msgid_plural "%d seconds" msgstr[0] "Sekund" msgstr[1] "Sekund" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -12006,8 +12007,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." @@ -12444,35 +12445,35 @@ msgstr "Sjekk referanseintegritet:" msgid "Showing tables" msgstr "Vis tabeller" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Plassbruk" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Radstatistikk" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statisk" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Radlengde" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Radstørrelse" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12499,7 +12500,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Fremmednøkkelbegrensning" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12557,53 +12558,53 @@ msgstr "En indeks har blitt lagt til %s" msgid "Show more actions" msgstr "Vis versjoner" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Fjern kolonne(r)" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Utskriftsvennlig forhåndsvisning" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relasjonsvisning" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Foreslå tabellstruktur" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Legg til kolonne(r)" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Ved slutten av tabellen" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Ved begynnelsen av tabellen" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Etter %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Lag en indeks på %s kolonner" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partisjonert" @@ -13144,8 +13145,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13280,8 +13281,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14132,8 +14133,8 @@ msgstr "maks. samtidige tilkoblinger" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen " -#~ "%s?" +#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen %" +#~ "s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/nl.po b/po/nl.po index 8582b060ca..170da0ec05 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-04-23 16:55+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: Weblate 0.10\n" @@ -37,53 +37,54 @@ msgstr "" "Het doelvenster kon niet worden bijgewerkt. Misschien heeft u het venster " "afgesloten of uw browser blokkeert bijwerkingen van uw venster." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Zoeken" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Start" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Beschrijving" @@ -116,13 +117,13 @@ msgstr "Databankopmerking: " msgid "Table comments" msgstr "Tabelopmerkingen" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "Tabelopmerkingen" msgid "Column" msgstr "Kolom" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "Verwijst naar" msgid "Comments" msgstr "Opmerkingen" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "Opmerkingen" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nee" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "Nee" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "Bekijk een dump (schema) van databank" msgid "No tables found in database." msgstr "Geen tabellen gevonden in de databank." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Selecteer alles" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Deselecteer alles" @@ -320,12 +321,12 @@ msgstr "Voeg beperkingen toe" msgid "Switch to copied database" msgstr "Overschakelen naar de gekopieerde databank" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Collatie" @@ -348,17 +349,17 @@ msgstr "Bewerk of exporteer relationeel schema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rijen" @@ -373,21 +374,21 @@ msgstr "in gebruik" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Gecreëerd" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Laatst bijgewerkt" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Laatst gecontroleerd" @@ -450,7 +451,7 @@ msgid "Del" msgstr "Verwijder" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Of" @@ -491,85 +492,87 @@ msgstr "Query uitvoeren" msgid "Access denied" msgstr "Toegang geweigerd" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "ten minste een van de woorden" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "alle woorden" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "de exacte zin" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "als een reguliere expressie" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Zoekresultaten voor \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s overeenkomst in de tabel %2$s" -msgstr[1] "%1$s overeenkomsten in de tabel %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Verkennen" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Verwijder gevonden rijen voor de tabel %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Verwijderen" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totaal: %s overeenkomst" msgstr[1] "Totaal: %s overeenkomsten" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s overeenkomst in de tabel %2$s" +msgstr[1] "%1$s overeenkomsten in de tabel %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Verkennen" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Verwijder gevonden rijen voor de tabel %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Verwijderen" + +#: db_search.php:362 msgid "Search in database" msgstr "Zoeken in de databank" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Woorden of waarden waarnaar gezocht moet worden (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Zoek:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Woorden worden gesplitst door een spatiekarakter (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "In de tabellen:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "In de kolom:" @@ -608,8 +611,8 @@ msgstr "Tracking is niet actief." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." @@ -618,7 +621,7 @@ msgstr "" msgid "View" msgstr "View" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -628,93 +631,89 @@ msgstr "Replicatie" msgid "Sum" msgstr "Som" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s is de standaard storage engine op deze MySQL-server." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Met geselecteerd:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Selecteer alles" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Deselecteer alles" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporteren" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Legen" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Verwijderen" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Controleer tabel" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Repareer tabel" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyseer tabel" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Voeg voorvoegsel toe aan tabel" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Vervang tabelvoorvoegsel" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Data Woordenboek" @@ -727,9 +726,9 @@ msgstr "Tabellen met tracker" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databank" @@ -746,17 +745,17 @@ msgstr "Aangemaakt" msgid "Updated" msgstr "Bijgewerkt" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Actie" @@ -788,7 +787,7 @@ msgstr "Structuur-snapshot" msgid "Untracked tables" msgstr "Tabellen zonder tracker" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Tabel tracken" @@ -928,11 +927,11 @@ msgstr "" #: import.php:86 #, 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 "" -"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de " -"%sdocumentatie%s voor mogelijkheden om dit te omzeilen." +"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %" +"sdocumentatie%s voor mogelijkheden om dit te omzeilen." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1010,13 +1009,13 @@ msgstr "" "worden versoepeld." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Uw SQL-query is succesvol uitgevoerd" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Terug" @@ -1102,8 +1101,8 @@ msgstr "Het wachtwoord is leeg!" msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Gebruiker toevoegen" @@ -1121,7 +1120,7 @@ msgid "Close" msgstr "Sluiten" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1148,13 +1147,13 @@ msgstr "Statische gegevens" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Totaal" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Andere" @@ -1184,7 +1183,7 @@ msgstr "Serververkeer (in KiB)" msgid "Connections since last refresh" msgstr "Verbindingen sinds laatste verversing" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processen" @@ -1249,13 +1248,13 @@ msgstr "Systeemwisselbestand" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1307,7 +1306,7 @@ msgstr "Doorgestuurde bytes" msgid "Bytes received" msgstr "Ontvangen bytes" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Verbindingen" @@ -1346,11 +1345,11 @@ msgstr "%d tabel(len)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Verkeer" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Instellingen" @@ -1373,8 +1372,8 @@ msgstr "Gelieve tenminste één variabele toe te voegen aan de reeks" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Geen" @@ -1474,7 +1473,7 @@ msgstr "Instellingen wijzigen" msgid "Current settings" msgstr "Huidige instellingen" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Grafiektitel" @@ -1564,7 +1563,7 @@ msgstr "Verklaar resultaat" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Tijd" @@ -1666,10 +1665,10 @@ msgstr "" "configuratie is mislukt. Standaard configuratie wordt gebruikt in de " "plaats..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importeren" @@ -1717,9 +1716,9 @@ msgstr "Gebruikte variabele / formule" msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Annuleren" @@ -1747,9 +1746,9 @@ msgstr "Kolom komt te vervallen" msgid "Adding Primary Key" msgstr "Primaire sleutel wordt toegevoegd" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "Correct" @@ -1826,7 +1825,7 @@ msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "De definitie van een opgeslagen functie moet een RETURN-statement bevatten!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" @@ -1867,8 +1866,8 @@ msgstr "SQL-queryveld tonen" msgid "No rows selected" msgstr "Geen rijen geselecteerd" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Veranderen" @@ -1883,7 +1882,7 @@ msgid "%d is not valid row number." msgstr "%d is geen geldig rijnummer." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2394,16 +2393,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "per seconde" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "per minuut" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "per uur" @@ -2505,8 +2504,8 @@ msgstr "Sorteren op sleutel" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opties" @@ -2559,7 +2558,7 @@ msgid "The row has been deleted" msgstr "De regel werd verwijderd" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "stop proces" @@ -2588,27 +2587,27 @@ msgstr "totaal" msgid "Query took %01.4f sec" msgstr "query duurde %01.4f sec" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Handelingen voor queryresultaat" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Grafiek weergeven" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "GIS-gegevens visualiseren" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "VIEW aanmaken" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Link niet gevonden" @@ -2683,46 +2682,46 @@ msgstr "Cookies moeten aan staan voorbij dit punt." msgid "Javascript must be enabled past this point" msgstr "Javascript moet ingeschakeld zijn voorbij dit punt" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Geen index gedefinieerd!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexen" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unieke waarde" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Gecomprimeerd" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinaliteit" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Opmerking" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "De primaire sleutel is vervallen" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Index %s is vervallen" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2731,9 +2730,9 @@ msgstr "" "De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden " "verwijderd." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Databanken" @@ -2743,7 +2742,7 @@ msgstr "Databanken" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2756,102 +2755,102 @@ msgstr "Server" msgid "Structure" msgstr "Structuur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Invoegen" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Handelingen" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Traceren" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggers" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabel lijkt leeg!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Databank lijkt leeg te zijn!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Query opbouwen" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Rechten" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routines" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Gebeurtenissen" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Ontwerper" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Gebruikers" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchroniseren" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binaire log" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variabelen" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Karaktersets" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Engines" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fout" @@ -2893,67 +2892,67 @@ msgstr "Recente tabellen" msgid "There are no recent tables" msgstr "Er zijn geen recente tabellen" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is beschikbaar op deze MySQL-server." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s is uitgeschakeld op deze MySQL-server." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Deze MySQL-server ondersteund de %s opslag-engine niet." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "onbekende tabelstatus: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Brondatabank" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Thema %s niet gevonden!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Ongeldige databank" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Ongeldige tabelnaam" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %1$s is hernoemd naar %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Tabelinterfacevoorkeuren konden niet worden opgeslagen" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2962,7 +2961,7 @@ msgstr "" "Opkuisen van tabelinterfacevoorkeuren is mislukt (zie $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2973,22 +2972,22 @@ msgstr "" "wijzigingen zullen verdwijnen na verversen van deze pagina. Gelieve na te " "kijken of de tabelstructuur gewijzigd werd." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Functie" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Waarde" @@ -2996,7 +2995,7 @@ msgstr "Waarde" msgid "Table Search" msgstr "In de tabel zoeken" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Aanpassen/Invoegen" @@ -3126,14 +3125,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3393,8 +3392,8 @@ msgstr "Welkom bij %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." @@ -3511,12 +3510,12 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Overhead" @@ -3628,18 +3627,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-query" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3729,7 +3728,7 @@ msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" msgid "Click to toggle" msgstr "Klik om te wisselen" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" @@ -3739,8 +3738,8 @@ msgstr "Blader op uw eigen pc:" msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de web-server upload directory %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "De folder die u heeft ingesteld om te uploaden kan niet worden bereikt" @@ -3926,7 +3925,7 @@ msgstr "Standaard waarde herstellen" msgid "Allow users to customize this value" msgstr "Gebruikers toestaan deze waarde aan te passen" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4220,7 +4219,7 @@ msgid "Character set of the file" msgstr "Karakterset voor het bestand" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Opmaak" @@ -4519,7 +4518,7 @@ msgstr "Navigatieframe" msgid "Customize appearance of the navigation frame" msgstr "Weergaveopties voor het navigatieframe" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servers" @@ -5877,7 +5876,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "Bepaalt of het queryveld op het scherm moet blijven na invoer" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Queryveld behouden" @@ -6216,22 +6215,22 @@ msgstr "De extensie %s ontbreekt. Gelieve uw PHP-configuratie te controleren." msgid "possible deep recursion attack" msgstr "mogelijke diepe recursieaanval" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "De server reageert niet (of de socket van de server is niet juist ingesteld)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "De server reageert niet." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Gelieve de rechten op de folder met de databank na te kijken." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Details..." @@ -6289,8 +6288,8 @@ msgstr "Tabel aanmaken" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Naam" @@ -6392,20 +6391,20 @@ msgstr ", @TABLE@ wordt vervangen door de tabelnaam" #, 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 "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " -"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" -"%5$s voor meer details." +"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5" +"$s voor meer details." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "gebruik dit voor toekomstige exports" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Karakterset van het bestand:" @@ -6932,11 +6931,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 "" -"Documentatie en meer informatie over PBXT kan gevonden worden op de " -"%sPrimeBase XT home pagina%s." +"Documentatie en meer informatie over PBXT kan gevonden worden op de %" +"sPrimeBase XT home pagina%s." #: libraries/engines/pbxt.lib.php:133 msgid "Related Links" @@ -6995,7 +6994,7 @@ msgstr "Gebeurtenis" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definitie" @@ -7056,7 +7055,7 @@ msgstr "Toon beschikbare MIME-types" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Machine" @@ -7273,8 +7272,8 @@ msgstr "Exporteerinhoud" msgid "No data found for GIS visualization." msgstr "Geen gegevens beschikbaar voor GIS-visualisatie." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultatenset terug (0 rijen)." @@ -7451,77 +7450,77 @@ msgstr "SQL-compatibiliteitsmodus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Gebruik geen AUTO_INCREMENT voor 0-waarden" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Verbergen" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binair" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Vanwege z'n lengte,
    is dit veld misschien niet te wijzigen" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binair - niet aanpassen" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "uploadfolder op webserver" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Herstart invoegen met %s rijen" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Toevoegen als nieuwe rij" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Toevoegen als nieuwe rij en foutmeldingen negeren" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Toon insert-query" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Terug" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Een nieuwe rij toevoegen" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Volgende rij bewerken" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" @@ -7546,7 +7545,7 @@ msgid "To" msgstr "Naar" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Verzenden" @@ -7562,7 +7561,7 @@ msgstr "Voorvoegsel toevoegen" msgid "Do you really want to execute the following query?" msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Geen verandering" @@ -7814,7 +7813,7 @@ msgid "" msgstr "" "Raadpleeg de documentatie over hoe u de tabel column_comments kunt bijwerkt" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Opgeslagen SQL-query" @@ -7869,6 +7868,10 @@ msgstr "" msgid "no description" msgstr "Geen beschrijving aanwezig" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Deselecteer alles" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Slave-instellingen" @@ -7906,8 +7909,8 @@ msgstr "Master-status" msgid "Slave status" msgstr "Slave-status" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variabelen" @@ -7934,7 +7937,7 @@ msgstr "Elke gebruiker" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Tekstveld gebruiken" @@ -7967,10 +7970,10 @@ msgid "Generate Password" msgstr "Wachtwoord genereren" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7981,7 +7984,7 @@ msgstr "De volgende query is mislukt: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Herstellen van de verwijderde gebeurtenis is mislukt." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "De geback-upte query was:" @@ -7996,7 +7999,7 @@ msgstr "Gebeurtenis %1$s werd gewijzigd." msgid "Event %1$s has been created." msgstr "Gebeurtenis %1$s werd aangemaakt." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8007,14 +8010,14 @@ msgstr "" msgid "Edit event" msgstr "Gebeurtenis bewerken" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fout tijdens het uitvoeren van de opdracht" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Details" @@ -8027,7 +8030,7 @@ msgstr "Gebeurtenisnaam" msgid "Event type" msgstr "Gebeurtenistype" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Veranderen naar %s" @@ -8055,13 +8058,13 @@ msgid "On completion preserve" msgstr "Na afloop behouden" # Not the best translation, suggestions are welcome -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Naam" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "De naam moet het formaat \"gebruikersnaam@computernaam\" hebben" @@ -8087,7 +8090,7 @@ msgstr "Gelieve een geldig type in te geven voor de gebeurtenis." msgid "You must provide an event definition." msgstr "Gelieve een definitie voor de gebeurtenis in te geven." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Nieuw" @@ -8107,7 +8110,7 @@ msgstr "Status van de gebeurtenis-scheduler" msgid "Returns" msgstr "Geeft terug" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8119,89 +8122,89 @@ msgstr "" "routines kan mislukken![strong] Gelieve de verbeterde 'mysqli'-uitbreiding " "te gebruiken om problemen te vermijden." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ongeldig routine-type: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Het terugzetten van de verwijderde routine is mislukt." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Routine %1$s werd gewijzigd." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Routine %1$s werd aangemaakt." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Routine aanpassen" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Routinenaam" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parameters" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Richting" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lengte/Waarden" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Parameter toevoegen" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Laatste parameter verwijderen" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Return-type" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Return-lengte/waarden" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Return-opties" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Is vast bepaald" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Beveiligingstype" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL-gegevenstoegang" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Gelieve een routinenaam in te geven" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ongeldige richting \"%s\" opgegeven voor parameter." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8209,37 +8212,37 @@ msgstr "" "Gelieve een lengte/waarden op te geven voor routineparameters van het type " "ENUM, SET, VARCHAR en VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Gelieve een naam en type op te geven voor iedere routineparameter." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Gelieve een geldig return-type op te geven voor de routine." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Gelieve een routinedefinitie op te geven." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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 regel beïnvloed door het laatste statement in de procedure" msgstr[1] "%d regels beïnvloed door het laatste statement in de procedure" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Resultaten van uitgevoerde routine %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Routine uitvoeren" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Routineparameters" @@ -8522,7 +8525,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Onbekende taal: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Huidige server" @@ -8553,50 +8556,50 @@ msgstr "Doeldatabank" msgid "Click to select" msgstr "Klik om te selecteren" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Voer SQL-query/queries uit op databank %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Leegmaken" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Kolommen" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Deze SQL-query opslaan" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Elke gebruiker toegang geven tot deze bladwijzer" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Bladwijzer met dezelfde naam overschrijven" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Scheidingsteken" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Laat deze query hier zien" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Alleen bekijken" @@ -8670,8 +8673,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de nodige " -"PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie" -"%s." +"PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie%" +"s." #: libraries/tbl_common.inc.php:53 #, php-format @@ -8700,7 +8703,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Index" @@ -8754,12 +8757,12 @@ msgid "As defined:" msgstr "Zoals aangegeven:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primaire sleutel" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Volledige tekst" @@ -8773,12 +8776,12 @@ msgstr "" msgid "after %s" msgstr "Na %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "%s kolom(men) toevoegen" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "U moet minstens één kolom toevoegen." @@ -8833,7 +8836,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Toont een link om deze afbeelding te downloaden." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9013,8 +9016,8 @@ msgid "Protocol version" msgstr "Protocolversie" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Gebruiker" @@ -9150,17 +9153,17 @@ msgid "" msgstr "" "De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Geen databanken" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Tabellen filteren op naam" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Tabellen filteren op naam" @@ -9181,7 +9184,7 @@ msgstr "Toon/verberg linker menu" msgid "Save position" msgstr "Posities opslaan" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Maak relatie" @@ -9241,37 +9244,37 @@ msgstr "Tabellen zonder relatie tonen/verbergen" msgid "Number of tables" msgstr "Aantal tabellen" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Relatie verwijderen" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Relatiebeheerder" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Behalve" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "sub-query" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Hernoemen naar" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nieuwe naam" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Samenvoegen" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Actieve opties" @@ -9440,13 +9443,13 @@ msgstr "Selecteer de te bekijken binaire log" msgid "Files" msgstr "Bestanden" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Getoonde queries afkappen" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Toon volledige queries" @@ -9462,7 +9465,7 @@ msgstr "Positie" msgid "Original position" msgstr "Oorspronkelijke positie" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informatie" @@ -9490,11 +9493,11 @@ msgstr "Masterreplicatie" msgid "Slave replication" msgstr "Slave-replicatie" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Statistieken inschakelen" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9752,7 +9755,7 @@ msgid "None" msgstr "Geen" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Tabel-specifieke rechten" @@ -9769,7 +9772,7 @@ msgstr "Administratie" msgid "Global privileges" msgstr "Globale rechten" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Databank-specifieke rechten" @@ -9791,7 +9794,7 @@ msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" # Enkelvoud. -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Geen gebruiker gevonden." @@ -9840,7 +9843,7 @@ msgstr "De geselecteerde gebruikers zijn met succes verwijderd." msgid "The privileges were reloaded successfully." msgstr "De rechten werden succesvol opnieuw ingeladen." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Rechten wijzigen" @@ -9853,7 +9856,7 @@ msgid "Export all" msgstr "Alles exporteren" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Elke" @@ -9870,32 +9873,32 @@ msgstr "Rechten voor %s" msgid "Users overview" msgstr "Gebruikers overzicht" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Toekennen" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "De geselecteerde gebruikers verwijderen" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Trek alle actieve rechten in van alle gebruikers en verwijder deze daarna." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Verwijder de databanken die dezelfde naam hebben als de gebruikers." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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-" "privilegestabel. De inhoud van deze tabel kan verschillen met de rechten van " @@ -9903,51 +9906,51 @@ msgstr "" "geval zijn dan moet men %sde rechtentabel vernieuwen%s voordat men verder " "gaat." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Kolom-specifieke rechten" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Rechten toevoegen op de volgende databank" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Wildcards _ en % moeten worden ge-escaped met een \\ om ze letterlijk te " "gebruiken" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Rechten toevoegen op de volgende tabel" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Aanmeldingsinformatie wijzigen / Gebruiker kopiëren" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Een nieuwe gebruiker aanmaken met dezelfde rechten en ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... de oude behouden." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... de oude verwijderen van de gebruikerstabellen." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... alle actieve rechten van de oude intrekken en deze daarna verwijderen." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9955,41 +9958,41 @@ msgstr "" "... de oude verwijderen van de gebruikerstabellen en de rechten nadien " "vernieuwen." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Databank voor gebruiker" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Een databank aanmaken met dezelfde naam en alle rechten hierop geven" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Alle rechten geven op de wildcardnaam (gebruikersnaam\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Alle rechten geven op databank "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Gebruikers die toegang hebben tot "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globaal" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "databank-specifiek" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "jokerteken" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Gebruiker is toegevoegd." @@ -10277,23 +10280,23 @@ msgstr "Enkel belangrijke waarden tonen" msgid "Filter by category..." msgstr "Filteren op categorie..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Toon niet-opgemaakte waarden" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Gerelateerde links:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Analyse uitvoeren" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Richtlijnen" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10301,7 +10304,7 @@ msgstr "" "De raadgever kan suggesties doen voor servervariabelen door de " "statusvariabelen van de server te analyseren." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10310,7 +10313,7 @@ msgstr "" "Hou er rekening mee dat dit systeem suggesties doet op basis van eenvoudige " "berekeningen en vuistregels, die mogelijk niet goed werken op uw systeem." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10321,7 +10324,7 @@ msgstr "" "wijziging ongedaan kan maken. Verkeerde instellingen kunnen een sterk " "negatief effect hebben op de performantie." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10333,31 +10336,31 @@ msgstr "" "waarneembare verbetering vastgesteld kon worden." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Questions sinds opstart: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Opdrachten" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Netwerkverkeer sinds opstart: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Deze MySQL-server draait inmiddels %1$s. Deze is gestart op %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10365,13 +10368,13 @@ msgstr "" "Deze MySQL-server is ingesteld als master en slave in een " "replicatieproces." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Deze MySQL-server is ingesteld als master in een replicatieproces." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Deze MySQL-server is ingesteld als slave in een replicatiereplicatie proces." # weggehaald. -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10388,11 +10391,11 @@ msgstr "" "Kijk voor meer informatie over de replicatiestatus op deze server in de sectie replicatiestatus." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Replicatiestatus" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10400,35 +10403,35 @@ msgstr "" "Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " "kunnen de gerapporteerde statistieken afwijken." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Ontvangen" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Verzonden" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Max. gelijktijdige verbindingen" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Mislukte pogingen" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Afgehaakte" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Opdracht" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10436,11 +10439,11 @@ msgstr "" "Het aantal verbindingen dat afgebroken werd omdat de client wegviel zonder " "de verbinding keurig af te sluiten." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Aantal gefaalde pogingen om te verbinden met de MySQL-server." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10451,18 +10454,18 @@ msgstr "" "hebben gemaakt van een tijdelijk bestand om opdrachten uit de transactie op " "te slaan." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Het aantal transactie dat gebruik maakte van de tijdelijke binaire logcache." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Het aantal verbindingspogingen (succesvol of niet) met de MySQL-server." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10474,11 +10477,11 @@ msgstr "" "groot is, is het aangewezen om tmp_table_size te vergroten om tijdelijke " "tabellen aan te maken in geheugen in plaats van op harde schijf." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10486,7 +10489,7 @@ msgstr "" "Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch " "door de server werd aangemaakt tijdens het uitvoeren van opdrachten." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10494,7 +10497,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10502,23 +10505,23 @@ msgstr "" "Het aantal INSERT DELAYED afhandelingsthreads in gebruik. Elke afzonderlijke " "tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen thread." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH-opdrachten." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT-opdrachten." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10528,7 +10531,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10538,7 +10541,7 @@ msgstr "" "hoog geeft dit een indicatie dat de server veel scans doet op de volledige " "index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom1 is geïndexeerd." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10547,7 +10550,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10557,7 +10560,7 @@ msgstr "" "wordt verhoogd wanneer u een indexkolom raadpleegt met een bereikbeperking " "of bij het doen van een indexscan." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10565,7 +10568,7 @@ msgstr "" "Het aantal leesopdrachten voor de voorgaande rij in de sleutelvolgorde. Dit " "wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10578,7 +10581,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10591,35 +10594,35 @@ msgstr "" "zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " "maken." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK-opdrachten." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Het aantal update-opdrachten voor een tabelrij." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Het aantal opdrachten om een rij aan een tabel toe te voegen." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pagina's dat gegevens bevat (dirty en clean)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Het aantal pagina's dat momenteel \"dirty\" is." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Het aantal bufferpool-pagina's dat is geschoond." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Het aantal vrije pagina's." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10629,7 +10632,7 @@ msgstr "" "waarin momenteel wordt gelezen of geschreven, of die om een andere reden " "niet geschoond of verwijderd kunnen worden." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10641,11 +10644,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Totale grootte van de bufferpool, in pagina's." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10654,7 +10657,7 @@ msgstr "" "gebeurt wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10662,11 +10665,11 @@ msgstr "" "Het aantal sequentiële read-aheads dat door InnoDB werd geïnitieerd. Dit " "gebeurt wanneer er een volledige tabelscan wordt uitgevoerd." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische leesverzoeken dat door InnoDB werd uitgevoerd." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10674,7 +10677,7 @@ msgstr "" "Het aantal logische leesoperaties dat InnoDB niet kon doen vanuit de " "bufferpool maar waarvoor een extra pagina ingeladen moest worden." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10688,86 +10691,86 @@ msgstr "" "zijn geschoond. Deze teller houdt bij hoe vaak dit voorkomt. Indien de " "bufferpool-grootte goed is ingesteld hoort deze waarde laag te zijn." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijfoperaties uitgevoerd op de InnoDB-bufferpool." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync()-operaties." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync()-operaties." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande leesoperaties." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijfoperaties." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid tot nu toe gelezen gegevens, in bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Het totale aantal operaties voor het lezen van gegevens." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Het totale aantal operaties voor het schrijven van gegevens." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid tot nu toe geschreven gegevens, in bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "Het aantal pagina's dat werd geschreven voor doublewrite-operaties." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite-operaties." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Het aantal keer dat er gewacht moest worden vanwege een volle logbuffer." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Het aantal verzoeken voor het schrijven in het logboek." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijfoperaties op het logbestand." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync()-schrijfoperaties uitgevoerd op het logbestand." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync-operaties op het logbestand." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijfoperaties op het logbestand." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Het aantal pagina's dat werd aangemaakt." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10776,54 +10779,54 @@ msgstr "" "Veel waarden worden geteld in pagina's. Een vaste paginagrootte maakt het " "eenvoudig deze om te zetten naar bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Het aantal gelezen pagina's." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Het aantal geschreven pagina's." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "De gemiddelde tijd nodig om een rij-lock te verkrijgen, in milliseconden." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "De totale tijd besteed aan het verkrijgen van rij-locks, in milliseconden." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "De maximale tijd nodig om een rij-lock te verkrijgen, in milliseconden." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Het aantal keer dat er op een rij-lock moest worden gewacht." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB-tabellen." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB-tabellen." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB-tabellen." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB-tabellen." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10832,13 +10835,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "Het aantal ongebruikte blokken in het sleutelcache." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10847,15 +10850,15 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage van de gebruikte sleutelcache (berekende waarde)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10865,7 +10868,7 @@ msgstr "" "key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " "cache miss rate kan worden berekend met Key_reads / Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10873,22 +10876,22 @@ msgstr "" "Sleutelcachemissers berekend als percentage van fysieke leesoperaties in " "vergelijking met leesverzoeken (berekende waarde)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Het aantal schrijfopdrachten voor een sleutelblok naar de cache." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Het aantal fysieke schrijfopdrachten voor een sleutelblok naar disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentage van fysieke schrijfopdrachten vergeleken met schrijfverzoeken " "(berekende waarde)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10899,7 +10902,7 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " "dat er nog geen query is gecompiled." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10907,13 +10910,13 @@ msgstr "" "Het maximum aantal verbindingen dat gelijktijdig in gebruik was sinds de " "server gestart werd." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Het aantal rijen dat klaar staat om te worden geschreven in INSERT DELAYED-" "wachtrijen." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10921,21 +10924,21 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de " "tabelcachewaarde te laag." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven naar " "logboeken)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10945,19 +10948,19 @@ msgstr "" "wijzen op versnippering, wat opgelost kan worden door een FLUSH QUERY CACHE-" "statement uit te voeren." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het querycache." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Het aantal cache-hits." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Het aantal queries dat aan de cache werd toegevoegd." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10970,7 +10973,7 @@ msgstr "" "gebruikt (least recently used, LRU) strategie om te bepalen welke queries " "worden verwijderd." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10978,19 +10981,19 @@ msgstr "" "Het aantal niet-gecachte queries (niet cachebaar, danwel niet gecached " "vanwege de instelling query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Het aantal queries dat in de cache staat." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in de querycache." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe-replicatie (nog niet geïmplementeerd)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10998,13 +11001,13 @@ msgstr "" "Het aantal joins dat geen gebruik maakt van een index. Indien dit geen 0 is, " "is het aan te raden om het gebruik van indexen te controleren." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Het aantal joins dat een bereik beperking toepassen op een gerefereerde " "tabel." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11013,7 +11016,7 @@ msgstr "" "van een sleutel. (Indien dit geen 0 is, is het aan te raden om het gebruik " "van indexen te controleren.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11021,17 +11024,17 @@ msgstr "" "Het aantal joins dat een bereik beperking gebruikt op de eerste tabel. (Dit " "hoeft geen groot probleem te zijn, zelfs niet bij grote tabellen.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Het aantal joins dat een volledige scan van de eerste tabel uitvoerde." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Het aantal momenteel openstaande tijdelijke tabellen voor de slave-SQL-" "thread." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11039,13 +11042,13 @@ msgstr "" "Het totaal aantal transacties dat moest worden herhaald door de replicatie-" "slave-SQL-thread (sinds het opstarten van de server)." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dit staat op 'ON' indien deze server als een replicatie-slave verbonden is " "met een masterserver." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11053,14 +11056,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Het aantal queries waarvan het uitvoeren langer dan long_query_time seconden " "duurde." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11070,24 +11073,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de " "systeemvariabele sort_buffer_size te vergroten." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" "Het aantal sorteringen dat werd uitgevoerd door het scannen van de tabel." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Het aantal keer dat een tabel-lock direct kon worden verkregen." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11099,7 +11102,7 @@ msgstr "" "problemen, kunt u het beste eerst uw queries optimaliseren. Daarna kunt u " "nog kijken naar het splitsen van tabellen en het gebruik van replicatie." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11109,11 +11112,11 @@ msgstr "" "met Threads_created/Connections. Indien deze waarde rood staat aangegeven is " "het aan te raden om thread_cache_size te vergroten." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11125,47 +11128,47 @@ msgstr "" "verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thread-implementatie, geen noemenswaardige prestatieverbetering.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Threadcache-trefprecentage (berekende waarde)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Start bewaking" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Instructies/Setup" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Klaar met herschikken/bewerken van de grafieken" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Een grafiek toevoegen" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Herschikken/bewerken van de grafieken" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Vernieuwingsfrequentie" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Grafiekkolommen" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Grafiekschikking" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11174,15 +11177,15 @@ msgstr "" "browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie " "heeft." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Standaardwaarde herstellen" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Bewakingsinstructies" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11197,7 +11200,7 @@ msgstr "" "dat general_log veel gegevens genereert en dat de belasting van de server " "tot 15% kan stijgen" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11209,11 +11212,11 @@ msgstr "" "Loggen naar een tabel wordt ondersteund vanaf MySQL 5.1.6. U kunt wel de " "grafiekfunctionaliteit gebruiken." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Gebruik van de monitor:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11224,7 +11227,7 @@ msgstr "" "'Instellingen', of gelijk welke grafiek verwijderen via het tandwielicoon " "bij iedere grafiek." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11237,105 +11240,105 @@ msgstr "" "geladen, daar kunt u op één van de SELECT-statements klikken om deze verder " "te analyseren." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Hou rekening met:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"Het inschakelen van de general_log kan de serverbelasting verhogen met " -"5-15%. Wees er ook bewust van dat het genereren van statistieken uit de " +"Het inschakelen van de general_log kan de serverbelasting verhogen met 5-" +"15%. Wees er ook bewust van dat het genereren van statistieken uit de " "logboeken een belastende taak is, daarom is het aan te raden om alleen een " "kleine periode te selecteren, en de general_log uit te schakelen en de tabel " "te legen zodra het monitoren niet meer nodig is." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Grafiek instellen" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Statusvariabele(n)" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Selecteer series:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Algemeen bewaakt" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "of geef variabelenaam op:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Verschil weergeven" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Een scheiding toepassen" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Eenheid toevoegen aan gegevenswaarden" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Deze serie toevoegen" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Reeks leegmaken" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Series in grafiek:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Logstatistieken" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Geselecteerde tijdspanne:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Enkel de opdrachten SELECT, INSERT, UPDATE en DELETE opvragen" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Variabelegegevens verwijderen uit INSERT-opdrachten om beter te kunnen " "groeperen" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Kies het logbestand waarvan u de statistieken wil genereren." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Resultaten worden gegroepeerd door de tekst van de SQL-query." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Query-analyser" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d seconde" msgstr[1] "%d seconden" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11660,10 +11663,10 @@ msgid "" msgstr "" "Deze %soptie%s zou uitgeschakeld moeten zijn gezien het de mogelijkheid " "geeft aan kwaadwillenden om op grote schaal aanmeldinspogingen uit te voeren " -"op willekeurige MySQL-servers. Indien toch noodzakelijk gebruik dan " -"%strusted proxies list%s. Echter, IP-adres gebaseerde beveiliging is " -"mogelijk niet betrouwbaar wanneer uw IP-adres uit het netwerk van uw " -"provider komt waar ook vele andere klanten gebruik van maken." +"op willekeurige MySQL-servers. Indien toch noodzakelijk gebruik dan %" +"strusted proxies list%s. Echter, IP-adres gebaseerde beveiliging is mogelijk " +"niet betrouwbaar wanneer uw IP-adres uit het netwerk van uw provider komt " +"waar ook vele andere klanten gebruik van maken." #: setup/lib/index.lib.php:296 msgid "" @@ -11764,8 +11767,8 @@ msgstr "" "U gebruikt het [kbd]config[/kbd]-authenticatietype en heeft de te gebruiken " "gebruikersnaam en wachtwoord hierbij opgegeven voor automatisch aanmelden. " "Dit is niet aanbevolen voor productiesystemen gezien iemand die het URL van " -"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype" -"%s [kbd]cookie[/kbd] of [kbd]http[/kbd]." +"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype%" +"s [kbd]cookie[/kbd] of [kbd]http[/kbd]." #: setup/lib/index.lib.php:314 #, php-format @@ -12124,35 +12127,35 @@ msgstr "Controleer referentiële integriteit:" msgid "Showing tables" msgstr "Toon tabellen" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Ruimtegebruik" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effectief" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Rijstatistieken" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statisch" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamisch" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Lengte van de rij" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Grootte van de rij" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Volgende automatische indexwaarde" @@ -12178,7 +12181,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Beperking voor vreemde sleutel" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Ruimtelijk" @@ -12228,51 +12231,51 @@ msgstr "Een index is toegevoegd aan %s" msgid "Show more actions" msgstr "Meer acties weergeven" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Kolom(men) verwijderen" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "View bewerken" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relatieoverzicht" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Tabelstructuur voorstellen" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Kolom toevoegen" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Aan het eind van de tabel" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Aan het begin van de tabel" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Na %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Een index aanmaken op kolommen %s " -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "gepartitioneerd" @@ -12812,8 +12815,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "De huidige verhouding van vrij querycachegeheugen tot de totale " "querycachegrootte is %s%%. Dit zou meer dan 80%% moeten zijn" @@ -12970,8 +12973,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% van alle sorteeracties veroorzaken tijdelijke tabellen, deze waarde zou " "lager moeten zijn dan 10%%." diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 41b97c05f7..ac08e90383 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\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" @@ -39,53 +38,54 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "" @@ -116,13 +116,13 @@ msgstr "" msgid "Table comments" msgstr "" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +131,30 @@ msgstr "" msgid "Column" msgstr "" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +192,8 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +202,15 @@ msgstr "" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +225,8 @@ msgstr "" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +241,11 @@ msgstr "" msgid "No tables found in database." msgstr "" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "" @@ -320,12 +320,12 @@ msgstr "" msgid "Switch to copied database" msgstr "" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "" @@ -346,17 +346,17 @@ msgstr "" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "" @@ -371,21 +371,21 @@ msgstr "" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "" @@ -448,7 +448,7 @@ msgid "Del" msgstr "" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "" @@ -489,85 +489,85 @@ msgstr "" msgid "Access denied" msgstr "" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "" -#: db_search.php:219 +#: db_search.php:239 #, possible-php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:242 -#, possible-php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "" -msgstr[1] "" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "" - -#: db_search.php:255 -#, possible-php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "" - -#: db_search.php:269 +#: db_search.php:267 #, possible-php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: db_search.php:292 -msgid "Search in database" -msgstr "" +#: db_search.php:296 +#, possible-php-format +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "" +msgstr[1] "" -#: db_search.php:295 -msgid "Words or values to search for (wildcard: \"%\"):" -msgstr "" - -#: db_search.php:300 -msgid "Find:" -msgstr "" - -#: db_search.php:304 db_search.php:305 -msgid "Words are separated by a space character (\" \")." +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" msgstr "" #: db_search.php:318 +#, possible-php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "" + +#: db_search.php:362 +msgid "Search in database" +msgstr "" + +#: db_search.php:366 +msgid "Words or values to search for (wildcard: \"%\"):" +msgstr "" + +#: db_search.php:373 +msgid "Find:" +msgstr "" + +#: db_search.php:376 db_search.php:377 +msgid "Words are separated by a space character (\" \")." +msgstr "" + +#: db_search.php:390 msgid "Inside tables:" msgstr "" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "" @@ -606,8 +606,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, possible-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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -615,7 +615,7 @@ msgstr "" msgid "View" msgstr "" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -625,93 +625,89 @@ msgstr "" msgid "Sum" msgstr "" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, possible-php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" @@ -724,9 +720,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "" @@ -743,17 +739,17 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "" @@ -785,7 +781,7 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "" @@ -918,8 +914,8 @@ msgstr "" #: import.php:86 #, possible-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 "" #: import.php:224 import.php:464 @@ -982,13 +978,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "" @@ -1072,8 +1068,8 @@ msgstr "" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "" @@ -1091,7 +1087,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1118,13 +1114,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1154,7 +1150,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1214,13 +1210,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "" @@ -1272,7 +1268,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1311,11 +1307,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "" @@ -1338,8 +1334,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "" @@ -1432,7 +1428,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "" @@ -1510,7 +1506,7 @@ msgstr "" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "" @@ -1598,10 +1594,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1649,9 +1645,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1679,9 +1675,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "" @@ -1757,7 +1753,7 @@ msgstr "" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1796,8 +1792,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "" @@ -1812,7 +1808,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2301,16 +2297,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2409,8 +2405,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2463,7 +2459,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2490,27 +2486,27 @@ msgstr "" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2579,55 +2575,55 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, possible-php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "" @@ -2637,7 +2633,7 @@ msgstr "" msgid "Server" msgstr "" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2650,102 +2646,102 @@ msgstr "" msgid "Structure" msgstr "" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2787,70 +2783,70 @@ msgstr "" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, possible-php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, possible-php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, possible-php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, possible-php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, possible-php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, possible-php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, possible-php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, possible-php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, possible-php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2858,22 +2854,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -2881,7 +2877,7 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "" @@ -3007,14 +3003,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3264,8 +3260,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:98 #, possible-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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3372,12 +3368,12 @@ msgstr "" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "" @@ -3484,18 +3480,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3583,7 +3579,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3593,8 +3589,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -3778,7 +3774,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4043,7 +4039,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "" @@ -4339,7 +4335,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5542,7 +5538,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "" @@ -5848,21 +5844,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -5917,8 +5913,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6018,8 +6014,8 @@ msgstr "" #, possible-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:285 @@ -6027,7 +6023,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6486,8 +6482,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, possible-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:133 @@ -6547,7 +6543,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6608,7 +6604,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -6802,8 +6798,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6965,75 +6961,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, possible-php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7057,7 +7053,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7073,7 +7069,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7323,7 +7319,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7370,6 +7366,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7404,8 +7404,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7430,7 +7430,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7461,10 +7461,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, possible-php-format @@ -7475,7 +7475,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7490,7 +7490,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7499,14 +7499,14 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7519,7 +7519,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, possible-php-format msgid "Change to %s" msgstr "" @@ -7546,13 +7546,13 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7577,7 +7577,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7597,7 +7597,7 @@ msgstr "" msgid "Returns" msgstr "" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7605,125 +7605,125 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, possible-php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, possible-php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, possible-php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, possible-php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, possible-php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8004,7 +8004,7 @@ msgstr "" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8035,50 +8035,50 @@ msgstr "" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, possible-php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, possible-php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8161,7 +8161,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8206,12 +8206,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8224,12 +8224,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, possible-php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "" @@ -8274,7 +8274,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8412,8 +8412,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -8521,15 +8521,15 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "" @@ -8550,7 +8550,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -8610,37 +8610,37 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "" @@ -8800,13 +8800,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -8822,7 +8822,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -8850,11 +8850,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9092,7 +9092,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9109,7 +9109,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9129,7 +9129,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9178,7 +9178,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9191,7 +9191,7 @@ msgid "Export all" msgstr "" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9208,115 +9208,115 @@ msgstr "" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, possible-php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, possible-php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, possible-php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "" @@ -9583,43 +9583,43 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9627,115 +9627,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, possible-php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, possible-php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, possible-php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9743,78 +9743,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9822,7 +9822,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9830,42 +9830,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9873,33 +9873,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9908,242 +9908,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10151,99 +10151,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10251,18 +10251,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10270,61 +10270,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10333,7 +10333,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10341,18 +10341,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10360,11 +10360,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10372,86 +10372,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "" -#: server_status.php:1807 +#: server_status.php:1822 #, possible-php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1810 +#: server_status.php:1825 #, possible-php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11171,35 +11171,35 @@ msgstr "" msgid "Showing tables" msgstr "" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11222,7 +11222,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11272,49 +11272,49 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, possible-php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, possible-php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" diff --git a/po/pl.po b/po/pl.po index 13c5afc460..99a80884f7 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 14:07+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: iMutrix\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: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgstr "" "zostało zamknięte, lub ustawienia zabezpieczeń przeglądarki są " "skonfigurowane na blokowanie aktualizacji między oknami." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Szukaj" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Wykonaj" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nazwa klucza" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Opis" @@ -118,13 +119,13 @@ msgstr "Komentarz bazy danych: " msgid "Table comments" msgstr "Komentarze tabeli" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Komentarze tabeli" msgid "Column" msgstr "Kolumna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Odsyłacze do" msgid "Comments" msgstr "Komentarze" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Komentarze" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nie" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Nie" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Zobacz zrzut (schemat) bazy danych" msgid "No tables found in database." msgstr "Nie znaleziono żadnych tabel w bazie danych." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Zaznacz wszystkie" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Odznacz wszystko" @@ -322,12 +323,12 @@ msgstr "Dodaj ograniczenia" msgid "Switch to copied database" msgstr "Przełącz do przekopiowanej bazy danych" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Metoda porównywania napisów" @@ -350,17 +351,17 @@ msgstr "Edytuj lub eksportuj schemat relacji" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rekordy" @@ -375,21 +376,21 @@ msgstr "w użyciu" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Tworzenie" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Ostatnia aktualizacja" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Ostatnie sprawdzanie" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Usuń" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Lub" @@ -494,59 +495,28 @@ msgstr "Wyślij zapytanie" msgid "Access denied" msgstr "Odmowa dostępu" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "co najmniej jeden z wyrazów" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "wszystkie wyrazy" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "dokładna fraza" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "jako wyrażenie regularne" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Wyniki wyszukiwania dla \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s dopasowaie wewnątrz tabeli %2$s" -msgstr[1] "%1$s dopasowania wewnątrz tabeli %2$s" -msgstr[2] "%1$s dopasowań wewnątrz tabeli %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Przeglądaj" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Usunąć dopasowania do tabeli %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Usuń" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -554,27 +524,60 @@ msgstr[0] "Ogółem: %s dopasowania" msgstr[1] "Ogółem: %s dopasowania" msgstr[2] "Ogółem: %s dopasowania" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s dopasowaie wewnątrz tabeli %2$s" +msgstr[1] "%1$s dopasowania wewnątrz tabeli %2$s" +msgstr[2] "%1$s dopasowań wewnątrz tabeli %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Przeglądaj" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Usunąć dopasowania do tabeli %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Usuń" + +#: db_search.php:362 msgid "Search in database" msgstr "Szukaj w bazie danych" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Wyrazy lub wartości do wyszukania (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Znajdź:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Wyrazy oddzielone są znakiem spacji (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Wewnątrz tabel:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Wewnątrz kolumny:" @@ -613,8 +616,8 @@ msgstr "Śledzenie nie jest aktywne." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się " "do %sdokumentacji%s." @@ -624,7 +627,7 @@ msgstr "" msgid "View" msgstr "Widok" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -634,93 +637,89 @@ msgstr "Replikacja" msgid "Sum" msgstr "Suma" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s to domyślny silnik składowania tego serwera MySQL." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Z zaznaczonymi:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Zaznacz wszystkie" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Odznacz wszystkie" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Zaznacz tabele nieoptymalne" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Podgląd wydruku" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Opróżnij" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Usuń" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Sprawdź tabelę" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optymalizuj tabelę" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Napraw tabelę" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizuj tabelę" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Dodaj przedrostek do tabeli" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Zamień przedrostek tabeli" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopiuj tabelę z przedrostkiem" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Słownik danych" @@ -733,9 +732,9 @@ msgstr "Tabele śledzone" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza danych" @@ -752,17 +751,17 @@ msgstr "Utworzona" msgid "Updated" msgstr "Zaktualizowana" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Działanie" @@ -794,7 +793,7 @@ msgstr "Migawka struktury" msgid "Untracked tables" msgstr "Tabele nieśledzone" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Śledź tabelę" @@ -931,11 +930,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Prawdopodobnie próbowano wczytać zbyt duży plik. Proszę zapoznać się " -"%sdokumentacją%s, aby obejść to ograniczenie." +"Prawdopodobnie próbowano wczytać zbyt duży plik. Proszę zapoznać się %" +"sdokumentacją%s, aby obejść to ograniczenie." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1009,13 +1008,13 @@ msgstr "" "importu bez zwiększenia limitów czasowych PHP." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Zapytanie SQL zostało wykonane pomyślnie" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Powrót" @@ -1101,8 +1100,8 @@ msgstr "Hasło jest puste!" msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Dodaj użytkownika" @@ -1120,7 +1119,7 @@ msgid "Close" msgstr "Zamknij" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1147,13 +1146,13 @@ msgstr "Dane statyczne" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Ogółem" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Inne" @@ -1183,7 +1182,7 @@ msgstr "Ruch na serwerze (w KiB)" msgid "Connections since last refresh" msgstr "Połączenia od czasu ostatniego odświeżenia" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesy" @@ -1247,13 +1246,13 @@ msgstr "Systemowa przestrzeń wymiany" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1305,7 +1304,7 @@ msgstr "Bajty przesłane" msgid "Bytes received" msgstr "Bajty otrzymane" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Połączenia" @@ -1344,11 +1343,11 @@ msgstr "%d tabeli(l)" msgid "Questions" msgstr "Pytania" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Ruch" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Ustawienia" @@ -1371,8 +1370,8 @@ msgstr "Proszę dodać przynajmniej jedną zmienną do serii" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Żaden" @@ -1472,7 +1471,7 @@ msgstr "Zmiana ustawień" msgid "Current settings" msgstr "Ustawienia bieżące" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Tytuł wykresu" @@ -1558,7 +1557,7 @@ msgstr "Wyjaśnij wynik przetworzenia danych" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Czas" @@ -1653,10 +1652,10 @@ msgstr "" "Nie udało zbudować siatki wykresu z importu konfiguracji. Przywracanie " "domyślnej konfiguracji..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1704,9 +1703,9 @@ msgstr "Użyj zmiennej/wzoru" msgid "Test" msgstr "Testuj" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Anuluj" @@ -1734,9 +1733,9 @@ msgstr "Usuwanie Kolumny" msgid "Adding Primary Key" msgstr "Dodawanie klucza głównego" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1812,7 +1811,7 @@ msgstr "Usuwanie" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definicja przechowywania funkcji musi zawierać deklaracje RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Edytor ENUM/SET" @@ -1851,8 +1850,8 @@ msgstr "Pokaż okno zapytań" msgid "No rows selected" msgstr "Nie żadnych wybrano rekordów" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Zmień" @@ -1867,7 +1866,7 @@ msgid "%d is not valid row number." msgstr "%d nie jest prawidłowym numerem wiersza." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2378,16 +2377,16 @@ msgstr "" "Nieoczekiwane znaki w linii %1$s. Spodziewana zakładka, ale nie znaleziono " "\"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "na sekundę" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "na minutę" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "na godzinę" @@ -2487,8 +2486,8 @@ msgstr "Sortuj wg klucza" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opcje" @@ -2541,7 +2540,7 @@ msgid "The row has been deleted" msgstr "Wiersz został usunięty" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Zabij" @@ -2570,27 +2569,27 @@ msgstr "wszystkich" msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Podgląd wydruku (z pełnymi tekstami)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Wyświetlanie wykresu" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Wizualizacja danych GIS" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Utwórz widok" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Łącze nie znalezione" @@ -2664,46 +2663,46 @@ msgstr "Odtąd musi być włączona obsługa ciasteczek." msgid "Javascript must be enabled past this point" msgstr "Javascript musi być włączona obok tego punktu" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Brak zdefiniowanego indeksu!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksy" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Jednoznaczny" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Spakowany" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Moc" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentarz" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Klucz podstawowy został usunięty" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Klucz %s został usunięty" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2712,9 +2711,9 @@ msgstr "" "Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać " "usunięty." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Bazy danych" @@ -2724,7 +2723,7 @@ msgstr "Bazy danych" msgid "Server" msgstr "Serwer" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2737,102 +2736,102 @@ msgstr "Serwer" msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Wstaw" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacje" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Śledzenie" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Wyzwalacze" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabela wydaje się być pusta!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Baza danych wydaje się pusta!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Zapytanie" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Uprawnienia" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Procedury i funkcje" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Zdarzenia" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Widok projektu" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Użytkownicy" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchronizacja" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Dziennik binarny" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Zmienne" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Kodowania znaków" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Wtyczki" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Mechanizmy" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Błąd" @@ -2877,63 +2876,63 @@ msgstr "Ostatnie tabele" msgid "There are no recent tables" msgstr "Brak ostatnich tabel" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s jest dostępny na tym serwerze MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Mechanizm %s został wyłączony dla tego serwera MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "nieznany status tabeli: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Źródło bazy danych '%s' nie zostało znalezione!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Docelowej bazy '%s' nie znaleziono!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Niewłaściwa baza danych" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Niewłaściwa nazwa tabeli" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s ma nazwę zmienioną na %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Nie można zapisać preferencji UI tabeli" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2942,7 +2941,7 @@ msgstr "" "Nie udało się czyszczenie preferencji tabeli UI (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2952,22 +2951,22 @@ msgstr "" "Nie można zapisać \"%s\" własności UI. Wprowadzone zmiany nie będą trwałe po " "odświeżeniu strony. Proszę sprawdzić, czy struktura tabeli została zmieniona." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkcja" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Wartość" @@ -2975,7 +2974,7 @@ msgstr "Wartość" msgid "Table Search" msgstr "Tabela szukania" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Edycja/Wstaw" @@ -3120,16 +3119,16 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Małe wartości zmiennoprzecinkowych numer, dopuszczalne są - 3.402823466E 38 " "do - 1.175494351E-38, 0 i 1.175494351E-38 do 3.402823466E 38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Podwójnej precyzji numer, dopuszczalne wartości zmiennoprzecinkowych są - " @@ -3428,8 +3427,8 @@ msgstr "Witamy w %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Możesz " "użyć %1$s skryptu instalacyjnego %2$s, aby utworzyć jedną." @@ -3543,12 +3542,12 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Dane" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Nadmiar" @@ -3660,18 +3659,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "ang." -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Zapytanie SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3759,7 +3758,7 @@ msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" msgid "Click to toggle" msgstr "Kliknij, aby przełączać" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze:" @@ -3769,8 +3768,8 @@ msgstr "Wyszukaj w komputerze:" msgid "Select from the web server upload directory %s:" msgstr "Wybierz katalog serwera WWW dla uploadu %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików" @@ -3954,7 +3953,7 @@ msgstr "Przywróć wartość domyślną" msgid "Allow users to customize this value" msgstr "Zezwól użytkownikom na zmianę tej wartości" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4246,7 +4245,7 @@ msgid "Character set of the file" msgstr "Kodowanie znaków pliku" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4544,7 +4543,7 @@ msgstr "Ramka nawigacji" msgid "Customize appearance of the navigation frame" msgstr "Dostosuj wygląd ramki nawigacji" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Serwery" @@ -5769,8 +5768,8 @@ msgstr "Szczegółowa nazwa serwera" #: libraries/config/messages.inc.php:455 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie " -"(wiersze)\";" +"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie (wiersze)" +"\";" #: libraries/config/messages.inc.php:456 msgid "Allow to display all the rows" @@ -5897,7 +5896,7 @@ msgid "" msgstr "" "Określa, czy pole zapytania, powinny pozostać na ekranie po jego złożeniu" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Zachowaj pole zapytania" @@ -6241,7 +6240,7 @@ msgstr "Brak rozszerzenia %s. Proszę sprawdzić konfigurację PHP." msgid "possible deep recursion attack" msgstr "możliwy głęboki atak rekurencji" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6249,15 +6248,15 @@ msgstr "" "Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo " "skonfigurowane)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Serwer nie odpowiada." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Szczegóły..." @@ -6314,8 +6313,8 @@ msgstr "Utwórz tabelę" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nazwa" @@ -6415,20 +6414,20 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli" #, 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 "" "Wartość ta jest interpretowana za pomocą %1$sstrftime%2$s, dzięki czemu " "można używać wartości czsu formatowania. Dodatkowo po transformacji stanie " -"się: %3$s. Inne teksty będą przechowywane tak jak są. Zobacz szczegóły w " -"%4$sFAQ%5$s." +"się: %3$s. Inne teksty będą przechowywane tak jak są. Zobacz szczegóły w %4" +"$sFAQ%5$s." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "użyj tego dla przyszłego eksportu" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Kodowanie znaków pliku:" @@ -6948,8 +6947,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 "" "Dokumentacja i dodatkowe informacje o PBXT można znaleźć na %sStronie " "domowej PrimeBase XT%s." @@ -7011,7 +7010,7 @@ msgstr "Zdarzenie" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Określenie" @@ -7072,7 +7071,7 @@ msgstr "Wyświetl typy MIME" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7288,8 +7287,8 @@ msgstr "Eksportuj zawartość" msgid "No data found for GIS visualization." msgstr "Nie znaleziono danych do wizualizacji GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero wierszy)." @@ -7464,77 +7463,77 @@ msgstr "Tryb zgodności SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nie używaj AUTO_INCREMENT dla wartości zerowych" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Ukryj" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarne" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Ze względu na jego długość,
    kolumna ta może nie być edytowalne" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binarne - nie do edycji" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "katalog przesyłania serwera web" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Kontynuuj wstawianie %s wierszy" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "i potem" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Wstaw jako nowy wiersz" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Wstaw jko nowy wiersz i ignoruj błędy" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Pokaż wstawiane zapytanie" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Wróć" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Wstaw nowy wiersz" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Edytuj następny wiersz" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Użyj TAB, aby przejść z wartości do wartości, lub CTRL+strzałki do " "poruszania się w dowolnym miejscu" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" @@ -7558,7 +7557,7 @@ msgid "To" msgstr "Do" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Wyślij" @@ -7574,7 +7573,7 @@ msgstr "Dodaj prefiks" msgid "Do you really want to execute the following query?" msgstr "Czy na pewno chcesz wykonać następującą kwerendę?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Bez zmian" @@ -7826,7 +7825,7 @@ msgstr "" "Informacje o tym, jak zaktualizować tabelę Column_comments znajdują się w " "dokumentacji" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Zapamiętane zapytanie SQL" @@ -7878,6 +7877,10 @@ msgstr "" msgid "no description" msgstr "brak opisu" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Odznacz wszystkie" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Konfiguracja serwera podrzędnego" @@ -7914,8 +7917,8 @@ msgstr "Stan serwera głównego" msgid "Slave status" msgstr "Stan serwera podrzędnego" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Zmienna" @@ -7942,7 +7945,7 @@ msgstr "Dowolny użytkownik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Użyj pola tekstowego" @@ -7975,10 +7978,10 @@ msgid "Generate Password" msgstr "Generuj hasło" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7989,7 +7992,7 @@ msgstr "Następujące zapytanie nie powiodło się: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Przepraszamy, nie udało nam się przywrócić upuszczonego zdarzenia." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Kopia zapasowa kwerendy została:" @@ -8004,7 +8007,7 @@ msgstr "Zdarzenie %1$s zostało zmodyfikowane." msgid "Event %1$s has been created." msgstr "Zdarzenie %1$s zostało utworzone." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8014,14 +8017,14 @@ msgstr "" msgid "Edit event" msgstr "Edytuj wydarzenie" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Błąd w przetwarzaniu wywołania" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Szczegóły" @@ -8034,7 +8037,7 @@ msgstr "Nazwa zdarzenia" msgid "Event type" msgstr "Typ zdarzenia" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Zmień na %s" @@ -8061,13 +8064,13 @@ msgstr "Koniec" msgid "On completion preserve" msgstr "Po zakończeniu zachować" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definiujący" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Definer musi znajdować się w formacie \"username@hostname\"" @@ -8092,7 +8095,7 @@ msgstr "Musisz podać prawidłowy typ zdarzenia." msgid "You must provide an event definition." msgstr "Należy podać definicję zdarzeń." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Nowy" @@ -8112,7 +8115,7 @@ msgstr "Harmonogram zdarzeń stanu" msgid "Returns" msgstr "Powrót" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8124,89 +8127,89 @@ msgstr "" "procedur może się nie udać![/strong] Proszę skorzystać z nowszego " "rozszerzenia 'mysqli', aby uniknąć problemów." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Nieprawidłowy typ procedury: %s" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Przepraszamy, nie udało nam się przywrócić upuszczony procedury." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Kolumna %1$s została zmodyfikowana." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Tabela %1$s została utworzona." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Edycja procedury" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Nazwa procedury" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parametry" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Kierunek" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Długość/Wartości" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Dodaj parametr" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Usuń ostatni parametr" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Zwracany typ" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Powrót długości/wartości" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Powrót opcji" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Jest deterministyczna" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Rodzaj zabezpieczenia" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Dostęp SQL do danych" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Musisz podać nazwę procedury" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Nieprawidłowy kierunek \"%s\" podany dla parametru." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8214,19 +8217,19 @@ msgstr "" "Należy podać długość/wartość parametrów procedury typu ENUM, SET, VARCHAR i " "VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Należy podać nazwę i typ dla każdego parametru procedury." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Musisz podać poprawny typ wartości zwracanej do procedury." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Należy podać definicję procedury." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8234,18 +8237,18 @@ msgstr[0] "%d wiersz dotyczy ostatniego sprawozdania wewnątrz procedury" msgstr[1] "%d wierszy dotyczy ostatniego sprawozdania wewnątrz procedury" msgstr[2] "%d wierszy dotyczy ostatniego sprawozdania wewnątrz procedury" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Wynik wykonanych procedur %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Wykonaj procedurę" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Parametry procedury" @@ -8528,7 +8531,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Nieznany język: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Bieżący serwer" @@ -8559,50 +8562,50 @@ msgstr "Docelowa baza danych" msgid "Click to select" msgstr "Kliknij, aby zaznaczyć" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Wyczyść" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Kolumny" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Niech każdy użytkownik ma dostęp do tej zakładki" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zastąp istniejącą zakładkę o tej samej nazwie" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Nie nadpisuj tego zapytania spoza okna" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Separator" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Pokaż to zapytanie tutaj ponownie" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Pokaż tylko" @@ -8677,8 +8680,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." +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" +"sdokumentacji%s." #: libraries/tbl_common.inc.php:53 #, php-format @@ -8708,7 +8711,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -8722,8 +8725,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:139 msgid "Transformation options" @@ -8759,12 +8762,12 @@ msgid "As defined:" msgstr "Zdefiniowana następująco:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Podstawowy" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Pełny tekst" @@ -8777,12 +8780,12 @@ msgstr "pierwszy" msgid "after %s" msgstr "po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s kolumnę(y)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Musisz dodać co najmniej jedną kolumnę." @@ -8835,7 +8838,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Wyświetla odnośnik do tego obrazu (bezpośrednie ściągnięcie BLOBa)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9010,8 +9013,8 @@ msgid "Protocol version" msgstr "Wersja protokołu" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Użytkownik" @@ -9145,20 +9148,20 @@ 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:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Brak baz danych" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filtr tabel wg nazwy" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtr tabel wg nazwy" @@ -9179,7 +9182,7 @@ msgstr "Pokaż/ukryj lewe menu" msgid "Save position" msgstr "Zapamiętaj pozycję" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Utwórz relację" @@ -9239,37 +9242,37 @@ msgstr "Ukryj/pokaż tabele bez relacji" msgid "Number of tables" msgstr "Liczba tabel" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Usuń relację" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Operator relacji" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Oprócz" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "w zapytaniu" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Zmień nazwę na" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nowa nazwa" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Utwórz" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Aktywne opcje" @@ -9432,13 +9435,13 @@ msgstr "Wybierz dziennik binarny do podglądu" msgid "Files" msgstr "Pliki" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Ucinaj wyświetlane zapytania" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" @@ -9454,7 +9457,7 @@ msgstr "Pozycja" msgid "Original position" msgstr "Oryginalna pozycja" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informacje" @@ -9483,11 +9486,11 @@ msgstr "Replikacja serwera głównego" msgid "Slave replication" msgstr "Replikacja serwera podrzędnego" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Włącz statystyki" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9738,7 +9741,7 @@ msgid "None" msgstr "Brak" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" @@ -9755,7 +9758,7 @@ msgstr "Administracja" msgid "Global privileges" msgstr "Globalne uprawnienia" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" @@ -9775,7 +9778,7 @@ msgstr "Dane użytkownika" msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Żadnego użytkownika nie znaleziono." @@ -9824,7 +9827,7 @@ msgstr "Wybrani użytkownicy zostali usunięci pomyślnie." msgid "The privileges were reloaded successfully." msgstr "Uprawnienia były przeładowane pomyślnie." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Edytuj uprawnienia" @@ -9837,7 +9840,7 @@ msgid "Export all" msgstr "Eksport wszystkiego" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Dowolny" @@ -9854,124 +9857,124 @@ msgstr "Uprawnienia dla %s" msgid "Users overview" msgstr "Omówienie użytkowników" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Nadawanie" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Usuń zaznaczonych użytkowników" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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, " "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Dodaj uprawnienia dla następującej bazy danych" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Symbole wieloznaczne % i _ należy uciec z \\ z nich korzystać dosłownie" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Dodaj uprawnienia dla następującej tabeli" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Zmień dane użytkownika / Kopiuj użytkownika" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... pozostaw starego." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... usunąć starą z tabel użytkowników." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... unieważnij wszystkie aktywne uprawnienia ze starej i usuń je później." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... usuń starą z tabel użytkownika i przeładuj uprawnienia później." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Baza danych dla użytkownika" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " "(nazwaużytkownika_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Przyznanie wszystkich uprawnień do bazy danych "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Użytkownicy mają dostęp do \"%s\"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "ogólny" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "znak wieloznaczny" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Użytkownik został dodany." @@ -10258,23 +10261,23 @@ msgstr "Pokaż tylko wartości alarmowe" msgid "Filter by category..." msgstr "&Filtruj wg kategorii..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Pokaż niesformatowane wartości" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Powiązane linki:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Analizuj" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Instrukcje" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10282,7 +10285,7 @@ msgstr "" "System Doradcy może dostarczyć zalecenia dotyczące zmiennych serwera poprzez " "analizę zmiennych stanu serwera." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10292,7 +10295,7 @@ msgstr "" "obliczeniach i zasadach, które nie mogą mieć obowiązkowego zastosowania do " "systemu." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10302,7 +10305,7 @@ msgstr "" "(poprzez czytanie dokumentacji) i jak cofnąć zmiany. Złe ustawienia mogą " "mieć bardzo negatywny wpływ na wydajność." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10313,31 +10316,31 @@ msgstr "" "zmianę, gdyby nie było jednoznacznego wymiernego postępu." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Pytania od uruchomienia: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Oświadczenia" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Ruch sieciowy od uruchomienia: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ten serwer MySQL działa już od: %1$s. Uruchomiony został o: %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10345,19 +10348,19 @@ msgstr "" "Ten serwer MySQL jest ustawiony jako główny i podrzędny w " "procesie replikacji." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Ten serwer MySQL jest ustawiony jako master i slave w procesie " "replikacji." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Ten serwer MySQL jest pracuje jako główny i podrzędny w " "procesie replikacji." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10365,11 +10368,11 @@ msgstr "" "Więcej informacji na temat stanu replikacji na serwerze, odwiedź sekcja replikacji." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Stan replikacji" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10377,35 +10380,35 @@ msgstr "" "Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " "jakich dostarcza serwer MySQL nie są wiarygodne." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Otrzymane" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Wysłane" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "maks. równoczesnych połączeń" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Nieudane próby" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Przerwane" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Polecenie" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10413,11 +10416,11 @@ msgstr "" "Liczba połączeń, które zostały przerwane, ponieważ klient zmarł bez " "poprawnego zamykania połączenia." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Liczba nieudanych prób połączenia się z serwerem MySQL." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10427,18 +10430,18 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " "binarnego." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Liczba prób połączenia (udane lub nie) do serwera MySQL." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10450,11 +10453,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10462,7 +10465,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10470,7 +10473,7 @@ msgstr "" "Liczba wierszy zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10478,23 +10481,23 @@ msgstr "" "Liczba użytych wątków obsługujących INSERT DELAYED. Każda osobna tabela, na " "której wykonuje się INSERT DELAYED dostaje własny wątek." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba wierszy zapisanych poprzez INSERT DELAYED." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych instrukcji COMMIT." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Ile razy wiersz został usunięty z tabeli." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10504,7 +10507,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10514,7 +10517,7 @@ msgstr "" "sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT " "col1 FROM foo, przy założeniu, że col1 jest zindeksowane." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10522,7 +10525,7 @@ msgstr "" "Liczba żądań odczytu wiersza na podstawie indeksu. Duża wartość to dobra " "oznaka tego, że zapytania i tabele są właściwie zindeksowane." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10532,7 +10535,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10540,7 +10543,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego wiersza w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10552,7 +10555,7 @@ msgstr "" "sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających " "przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10564,35 +10567,35 @@ msgstr "" "nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób " "pozwalający skorzystać z istniejących indeksów." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany wiersza w tabeli." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania wiersza do tabeli." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Liczba stron w puli bufora, których wymiecienia zażądano." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10602,7 +10605,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10615,11 +10618,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Całkowita wielkość puli bufora, w stronach." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10628,7 +10631,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10636,11 +10639,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10648,7 +10651,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10662,51 +10665,51 @@ msgstr "" "wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był " "ustawiony właściwie, wartość ta powinna być mała." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10714,35 +10717,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10751,51 +10754,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad wiersza na które aktualnie się czeka." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady wiersza, w milisekundach." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Całkowity czas zużyty na uzyskiwanie blokad wierszy, w milisekundach." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady wiersza, w milisekundach." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę wiersza." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba wierszy usuniętych z tabel InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba wierszy dodanych do tabel InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Liczba wierszy odczytanych z tabel InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba wierszy zmienionych w tabelach InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10804,7 +10807,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10812,7 +10815,7 @@ msgstr "" "Liczba nieużywanych bloków w buforze podręcznym indeksów. Można użyć tej " "wartości do określenia jaka część bufora indeksów jest w użyciu." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10821,15 +10824,15 @@ msgstr "" "Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " "który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Procent używanego klucza pamięci podręcznej (obliczona wartość)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10840,7 +10843,7 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10848,21 +10851,21 @@ msgstr "" "Brakujący klucz pamięci podręcznej oblicza jako porównanie fizycznego " "odczytu do żądania odczytu (obliczona wartość)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Liczba żądań zapisów bloków indeksów to bufora podręcznego." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Liczba fizycznych zapisów bloków indeksów na dysk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procent fizycznego zapisu w porównaniu do żądania zapisu (obliczona wartość)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10873,7 +10876,7 @@ msgstr "" "kwerend dla tego samego zapytania. Domyśla wartość 0 onazcza, że kwerenda " "została opracowana jeszcze." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10881,11 +10884,11 @@ msgstr "" "Maksymalna liczba połączeń, które były używane jednocześnie odkąd serwer " "został uruchomiony." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Liczba wierszy oczekujących na zapisanie w kolejkach INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10893,20 +10896,20 @@ msgstr "" "Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " "prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10916,19 +10919,19 @@ msgstr "" "na problemy z fragmentacją, które mogą być rozwiązane poprzez wydawanie " "polecenie FLUSH CACHE QUERY." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10941,7 +10944,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10949,19 +10952,19 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji bez awaryjnie (jeszcze nie zaimplementowano)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10969,13 +10972,13 @@ msgstr "" "Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje " "staranne przyjrzenie się indeksom tabel." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Liczba złączeń w których użyto wyszukiwania zakresowego na pierwszej " "złączanej tabeli." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10984,7 +10987,7 @@ msgstr "" "dla każdego wiersza. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10992,16 +10995,16 @@ msgstr "" "Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. " "(Nawet duża wartość nie ma kluczowego znaczenia.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Liczba złączeń, które przeszukały w pełni pierwszą tabelę." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Liczba tymczasowych tabel aktualnie otwartych przez podrzędny wątek SQL." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11009,26 +11012,26 @@ msgstr "" "Ile razy łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "ON oznacza, że ten serwer jest podrzędny i jest podłączony go serwera " "głównego." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Liczba wątków, których utworzenie trwało dłużej niż slow_launch_time sekund." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Liczba zapytań, których wykonanie zajęło więcej niż long_query_time sekund." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11038,23 +11041,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Liczba posortowanych wierszy." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11066,7 +11069,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11076,11 +11079,11 @@ msgstr "" "może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony " "oznacza, że powinno się zwiększyć thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11092,47 +11095,47 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Cache wątku trafień (obliczona wartość)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Uruchom monitor" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Instrukcje/Setup" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Gotowe przestawienie/edycji wykresów" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Dodaj wykres" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "przestawienie/edycji wykresów" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Częstotliwość odświeżania" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Kolumny wykresu" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Układ wykresu" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11140,15 +11143,15 @@ msgstr "" "Układ wykresów są przechowywane w przeglądarce lokalnego przechowywania. " "Możesz wyeksportować go, jeśli masz skomplikowany zestaw górę." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Przywróć wartość domyślną" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Instrukcje monitora" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11162,7 +11165,7 @@ msgstr "" "włączone. Należy jednak pamiętać, że general_log produkuje duże ilości " "danych i zwiększa obciążenie serwera nawet o 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11174,11 +11177,11 @@ msgstr "" "tabeli jest obsługiwana przez MySQL 5.1.6 i nowszej. Można nadal używać " "funkcji wykresów serwera jednak." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Korzystanie z monitora:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11188,7 +11191,7 @@ msgstr "" "odstępach czasu. Możesz dodawać wykresy i zmienić częstotliwość odświeżania " "w 'Ustawienia' lub usunąć wykres za pomocą ikony zębatki dla każdego wykresu." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11200,11 +11203,11 @@ msgstr "" "wykresie. Po potwierdzeniu, to załaduje spis pogrupowanych pytań, nie można " "kliknąć na wszelkich występujących instrukcji SELECT do dalszych analiz." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Proszę zwrócić uwagę:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11217,80 +11220,80 @@ msgstr "" "wyłączyć general_log i opróżnić swoją tabelę raz monitorowania nie jest " "wymagane." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Ustawiony wykres" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Zmienna statusu(ów)" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Wybierz serię:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Najczęściej monitorowany" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "lub wpisz nazwę zmiennej:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Wyświetl jako wartości różnicy" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Zastosuj dzielnik" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Dołącz urządzenia do wartości danych" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Dodaj tę serię" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Wyczyść serie" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Seria na wykresie:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Statystyki Log" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Wybrany zakres czasu:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Pobierać tylko oświadczenia SELECT, INSERT, UPDATE i DELETE" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Usuń zmiennych danych w oświadczeniu INSERT dla lepszej grupy" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" "Wybierz z którego dziennika chcesz statystyki które mają być generowane." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Wyniki są pogrupowane według zapytania tekstu." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Analizuj zapytanie" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11298,7 +11301,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekund" msgstr[2] "%d sekundę" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11693,8 +11696,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 "" -"W przypadku korzystania z uwierzytelniania cookie i przechowywać " -"%sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s logowania " +"W przypadku korzystania z uwierzytelniania cookie i przechowywać %" +"sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s logowania " "muszą być ustawione na wartość mniejsza lub równa jej." #: setup/lib/index.lib.php:310 @@ -12076,35 +12079,35 @@ msgstr "Sprawdź spójność powiązań:" msgid "Showing tables" msgstr "Pokaż tabele" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Wykorzystanie przestrzeni" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektywne" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statystyka wiersza" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statycznie" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamiczny" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Długość wiersza" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Rozmiar wiersza" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Następny autoindeks" @@ -12130,7 +12133,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ograniczenie klucza obcego" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Przestrzenny" @@ -12180,49 +12183,49 @@ msgstr "Do %s dodany został indeks" msgid "Show more actions" msgstr "Pokaż więcej akcji" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Przenieś kolumny" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Aby przenieś kolumny, przeciągając je w górę i w dół." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Edycja widoku" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Widok relacyjny" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Zaproponowanie struktury tabeli" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Dodaj kolumnę" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Na końcu tabeli" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Na początku tabeli" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Utwórz indeks na kolumnach %s" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partycjonowanie" @@ -12757,8 +12760,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Bieżący współczynnik wolnej pamięci pamięci podręcznej zapytań do " "całkowitego zapytania wielkości cache to %s%%. Powinno być powyżej 80%%" @@ -12914,8 +12917,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% wszelkiego rodzaju spowodować tabel tymczasowych, ta wartość ta powinna " "być niższa niż 10%%." @@ -13462,8 +13465,8 @@ msgstr "" #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej " -"1%%" +"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej 1%" +"%" #: libraries/advisory_rules.txt:399 msgid "Rate of aborted connections" diff --git a/po/pt.po b/po/pt.po index b9c6ab5012..fbd8ac25a9 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:05+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "fechado a janela que a originou, ou as configurações de segurança do seu " "browser encontram-se definidas para não permitir actualizações entre janelas." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Pesquisar" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Executar" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nome do Índice" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Descrição" @@ -117,13 +118,13 @@ msgstr "Comentário da Base de Dados: " msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Comentários da tabela" msgid "Column" msgstr "Coluna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Comentários" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Não" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Não" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Ver o esquema da base de dados" msgid "No tables found in database." msgstr "Nenhuma tabela encontrada na base de dados." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Selecciona Todas" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Limpa Todas as Selecções" @@ -321,12 +322,12 @@ msgstr "Adicionar restrições (constraints)" msgid "Switch to copied database" msgstr "Mudar para a Base de Dados copiada" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Agrupamento (Collation)" @@ -349,17 +350,17 @@ msgstr "Editar ou exporta o esquema relacional (schema)" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Registos" @@ -374,21 +375,21 @@ msgstr "em uso" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Criação" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Última actualização" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Última Verificação" @@ -451,7 +452,7 @@ msgid "Del" msgstr "Elim" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ou" @@ -492,85 +493,87 @@ msgstr "Executar Consulta" msgid "Access denied" msgstr "Acesso Negado" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "todas as palavras" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "a frase exata" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "como expressão regular" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Procurar resultados para \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s resultado na tabela %2$s" -msgstr[1] "%1$s resultados na tabela %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Procurar" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Apagar os semelhantes para a %s tabela?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Apagar" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s resultado na tabela %2$s" +msgstr[1] "%1$s resultados na tabela %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Procurar" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Apagar os semelhantes para a %s tabela?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Apagar" + +#: db_search.php:362 msgid "Search in database" msgstr "Pesquisar na Base de Dados" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) a pesquisar (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Procurar:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "As palavras são separadas pelo caracter espaço (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Dentro de Tabela(s):" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Dentro da coluna:" @@ -609,18 +612,18 @@ msgstr "Detecção de Alterações está desactivada." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Esta vista tem número de linhas aproximado. Por favor, consulte a " -"%sdocumentação%s." +"Esta vista tem número de linhas aproximado. Por favor, consulte a %" +"sdocumentação%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Vista" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -630,93 +633,89 @@ msgstr "Replicação" msgid "Sum" msgstr "Soma" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o storage engine por defeito neste MySQL server." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Com os seleccionados:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Todos" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Nenhum" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Limpa" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Elimina" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimizar tabela" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Adicionar prefixo à tabela" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Substituir prefixo da tabela" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiar tabela com prefixo" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dicionario de dados" @@ -729,9 +728,9 @@ msgstr "Tabelas em tracking" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de Dados" @@ -748,17 +747,17 @@ msgstr "Criado" msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Estado" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Acções" @@ -790,7 +789,7 @@ msgstr "Snapshot da estrutura" msgid "Untracked tables" msgstr "Tabelas sem tracking" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Tracking à tabela" @@ -927,8 +926,8 @@ msgstr "" #: import.php:86 #, 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 "" "Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por " "favor reveja a %sdocumentação%s para encontrar formas de contornar este " @@ -1010,13 +1009,13 @@ msgstr "" "incremente os tempos de limite de php." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "O seu comando SQL foi executado com sucesso" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Voltar" @@ -1103,8 +1102,8 @@ msgid "The passwords aren't the same!" msgstr "" "As palavras-passe são diferentes!\\nLembre-se de confirmar a palavra-passe!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Adicionar utilizador" @@ -1122,7 +1121,7 @@ msgid "Close" msgstr "Fechar" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1149,13 +1148,13 @@ msgstr "Dados estáticos" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Outros" @@ -1185,7 +1184,7 @@ msgstr "Tráfego do servidor (em KiB)" msgid "Connections since last refresh" msgstr "Ligações desde a última actualização" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processos" @@ -1249,13 +1248,13 @@ msgstr "Swap do sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1307,7 +1306,7 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recebidos" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Ligações" @@ -1346,11 +1345,11 @@ msgstr "%d tabela(s)" msgid "Questions" msgstr "Perguntas" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Configurações" @@ -1373,8 +1372,8 @@ msgstr "Por favor adicione pelo menos uma variável à serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Nenhum" @@ -1474,7 +1473,7 @@ msgstr "Modificar configurações" msgid "Current settings" msgstr "Configurações atuais" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Titulo do gráfico" @@ -1561,7 +1560,7 @@ msgstr "Explicar SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Tempo" @@ -1657,10 +1656,10 @@ msgstr "" "Falha ao construir grelha do gráfico com a configuração importada. " "Redefinindo os valores padrão..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1708,9 +1707,9 @@ msgstr "Variável / formula utilizada" msgid "Test" msgstr "Teste" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Cancelar" @@ -1738,9 +1737,9 @@ msgstr "Apagando Coluna" msgid "Adding Primary Key" msgstr "Adicionando Chave Primária" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1816,7 +1815,7 @@ msgstr "A Eliminar" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "A definição de uma função armazenada deve conter uma instrução RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" @@ -1855,8 +1854,8 @@ msgstr "Mostrar Caixa do query" msgid "No rows selected" msgstr "Nenhum registo(linha) seleccionado." -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Muda" @@ -1871,7 +1870,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2379,16 +2378,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "por hora" @@ -2496,8 +2495,8 @@ msgstr "Ordenar por chave" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Operações" @@ -2560,7 +2559,7 @@ msgid "The row has been deleted" msgstr "Registo eliminado" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Termina" @@ -2587,30 +2586,30 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema de PDF" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Versão do servidor" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Link não encontrado" @@ -2687,46 +2686,46 @@ msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." msgid "Javascript must be enabled past this point" msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Nenhum indíce definido!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Quantidade" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentário" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "A chave primária foi eliminada" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "O Índice %s foi eliminado" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2734,9 +2733,9 @@ msgid "" msgstr "" "Os Índices %1$s e %2$s parecem ser iguais ou um deles pode ter sido removido." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Base de Dados" @@ -2746,7 +2745,7 @@ msgstr "Base de Dados" msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2759,106 +2758,106 @@ msgstr "Servidor" msgid "Structure" msgstr "Estrutura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Insere" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operações" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilégios" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Enviado" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Utilizador" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binário " -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Mapas de Caracteres" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Erro" @@ -2900,67 +2899,67 @@ msgstr "Tabelas Recentes" msgid "There are no recent tables" msgstr "Não existem tabelas recentes" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Não está disponível nenhuma informação detalhada para este mecanismo de " "armazenamento." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponível neste servidor MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s está desactivado neste servidor MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Este servidor MySQL não suporta o mecanismo de armazenamento %s." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "Estado da tabela desconhecido: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pesquisar na Base de Dados" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s não encontrado!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Base de Dados inválida" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Nome de tabela inválido" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Erro ao mudar o nome da tabela %1$s para %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %s renomeada para %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Não foi possível salvar as preferências de interface da tabela" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2969,7 +2968,7 @@ msgstr "" "Falha ao limpar as preferências de interface da tabela (consulte $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2980,23 +2979,23 @@ msgstr "" "serão constantes quando recarregar esta página. Favor verifique se a " "estrutura da tabela foi alterada." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funções" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "Operações" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Valor" @@ -3006,7 +3005,7 @@ msgstr "Valor" msgid "Table Search" msgstr "Pesquisar" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3143,14 +3142,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3410,11 +3409,11 @@ msgstr "Bemvindo ao %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" -"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script" -"%2$s pode ser utilizado para criar um." +"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%" +"2$s pode ser utilizado para criar um." #: libraries/auth/config.auth.lib.php:110 msgid "" @@ -3527,12 +3526,12 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Dados" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Suspenso" @@ -3649,18 +3648,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Comando SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3748,7 +3747,7 @@ msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s" msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Procurar no seu computador:" @@ -3758,8 +3757,8 @@ msgstr "Procurar no seu computador:" msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir da directoria de upload do servidor %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Não é possivel alcançar a directoria que configurou para fazer upload" @@ -3948,7 +3947,7 @@ msgstr "Restaurar valor padrão" msgid "Allow users to customize this value" msgstr "Permitir a todos os utilizadores alterarem este valor" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4243,7 +4242,7 @@ msgid "Character set of the file" msgstr "Configurar o Mapa de Caracteres do ficheiro" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formato" @@ -4562,7 +4561,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5836,7 +5835,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6151,21 +6150,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6223,8 +6222,8 @@ msgstr "Criar uma Página nova" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nome" @@ -6346,8 +6345,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:285 @@ -6355,7 +6354,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Configurar o Mapa de Caracteres do ficheiro:" @@ -6837,8 +6836,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6914,7 +6913,7 @@ msgstr "Enviado" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -6987,7 +6986,7 @@ msgstr "MIME-types disponíveis" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Máquina" @@ -7194,8 +7193,8 @@ msgstr "Tipo de Exportação" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." @@ -7360,79 +7359,79 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Esconder" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binário" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "ause of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Devido ao seu tamanho,
    este campo pode não ser editável " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binário - não editar" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "Directoria no servidor web para fazer upload" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Insere como novo registo" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Inserir novo registo" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Editar próxima coluna" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7460,7 +7459,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Submete" @@ -7478,7 +7477,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Confirma : " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Sem alterações" @@ -7737,7 +7736,7 @@ msgid "" msgstr "" "Consulte a Documentação sobre como actualizar a Tabela Column_comments Table" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Comandos SQL marcados" @@ -7784,6 +7783,10 @@ msgstr "" msgid "no description" msgstr "sem Descrição" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Nenhum" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7819,8 +7822,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variável" @@ -7846,7 +7849,7 @@ msgstr "Qualquer utilizador" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Usar campo de texto" @@ -7877,10 +7880,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7891,7 +7894,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7907,7 +7910,7 @@ msgstr "A tabela %s foi eliminada" msgid "Event %1$s has been created." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7917,16 +7920,16 @@ msgstr "" msgid "Edit event" msgstr "Enviado" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Erro a Processar Pedido" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7941,7 +7944,7 @@ msgstr "Tipo de Exportação" msgid "Event type" msgstr "Tipo de Exportação" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7974,13 +7977,13 @@ msgstr "Fim" msgid "On completion preserve" msgstr "Instrucções de inserção completas" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8005,7 +8008,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8027,7 +8030,7 @@ msgstr "" msgid "Returns" msgstr "Opções da tabela" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8035,138 +8038,138 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Nome dos Campos" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Criação" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Tamanho/Valores*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Remover a Base de Dados" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Tamanho/Valores*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opções da tabela" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Tipo de Query" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "Permite criar novas tabelas." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8486,7 +8489,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8521,52 +8524,52 @@ msgstr "Pesquisar na Base de Dados" msgid "Click to select" msgstr "Clique para seleccionar" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Executa comando(s) SQL na base de dados %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Executa comando(s) SQL na base de dados %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Não alterar esta pesquisa de fora da janela" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Mostrar de novo aqui este comando" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Ver apenas" @@ -8674,7 +8677,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Índice" @@ -8729,12 +8732,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primária" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Texto Completo" @@ -8748,12 +8751,12 @@ msgstr "" msgid "after %s" msgstr "Depois %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Adiciona novo campo" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8804,7 +8807,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Mostra uma ligação para esta imagem (blob download directo , i.e.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8958,8 +8961,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Utilizador" @@ -9086,17 +9089,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Sem bases de dados" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Alterar a ordem da tabela por" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9120,7 +9123,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 #, fuzzy msgid "Create relation" msgstr "Versão do servidor" @@ -9186,47 +9189,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Vista de Relação" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Exportar" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "na pesquisa" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Renomeia a tabela para " -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Nome do Utilizador" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Criar" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9402,13 +9405,13 @@ msgstr "" msgid "Files" msgstr "Qtd Campos" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Truncar os Queries mostrados" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Mostrar queries completos" @@ -9424,7 +9427,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 #, fuzzy msgid "Information" msgstr "Informação de Login " @@ -9454,11 +9457,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Activar Estatísticas" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9712,7 +9715,7 @@ msgid "None" msgstr "Nenhum" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" @@ -9729,7 +9732,7 @@ msgstr "Administração" msgid "Global privileges" msgstr "Privilégios Globais" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" @@ -9749,7 +9752,7 @@ msgstr "Informação de Login" msgid "Do not change the password" msgstr "Mantendo a palavra-passe" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9800,7 +9803,7 @@ msgstr "Os utilizadores selecionado foram apagados com sucesso." msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Alterar Privilegios" @@ -9815,7 +9818,7 @@ msgid "Export all" msgstr "Exportar" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Todos" @@ -9835,81 +9838,81 @@ msgstr "Privilégios" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Remover utilizadores seleccionados" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" "Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilégios específicos da Coluna" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Adicionar privilégios na base de dados seguinte" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Todos privilégios na tabela seguinte" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Mudar a informação de login / Copiar Utilizador" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo utilizador com os mesmo privilégios e ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... apagar o antigo das tabelas do utilizador." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revogar todos os privilégios activos do antigo e a seguir apagá-lo." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9917,41 +9920,41 @@ msgstr "" " ... apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verificar Privilégios para a Base de Dados "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Utilizadores que tem acesso a "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10237,49 +10240,49 @@ msgstr "Mostra tabelas" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "Mostra tabelas" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relações" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Tipo de Query" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Funções" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10287,118 +10290,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Itens" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "Relações" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Recebido" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Enviado" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Tentativas falhadas" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Comando" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10406,78 +10409,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10485,7 +10488,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10493,42 +10496,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10536,33 +10539,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10571,243 +10574,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10815,99 +10818,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10915,18 +10918,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10934,68 +10937,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Detecção de Alterações está desactivada." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy msgid "Start Monitor" msgstr "Estado" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy msgid "Add chart" msgstr "Adiciona novo campo" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Gerado por" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adicionar/Remover Campos" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11004,7 +11007,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11012,18 +11015,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11031,11 +11034,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11043,90 +11046,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Remover a Base de Dados" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Seleccionar Tabelas" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Acrescenta um utilizador" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "Comando SQL" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Estatísticas dos registos" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Seleccionar Tabelas" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tipo de Query" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11134,7 +11137,7 @@ msgid_plural "%d seconds" msgstr[0] "por segundo" msgstr[1] "por segundo" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11908,36 +11911,36 @@ msgstr "Verificar Integridade referencial:" msgid "Showing tables" msgstr "Mostra tabelas" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Espaço ocupado" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Em uso" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Estatísticas dos registos" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinâmico" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 #, fuzzy msgid "Row length" msgstr "Comprimento de linha" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Tamanho dos reg." -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11962,7 +11965,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12019,55 +12022,55 @@ msgstr "Um índice foi adicionado a %s" msgid "Show more actions" msgstr "Mostra informação do PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "Adicionar colunas" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Vista de impressão" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Vista de Relação" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Propor uma estrutura de tabela" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy msgid "Add column" msgstr "Adiciona novo campo" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "No Fim da Tabela" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "No Início da Tabela" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Depois %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Criar um índice com %s coluna(s)" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12596,8 +12599,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12727,8 +12730,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/pt_BR.po b/po/pt_BR.po index b3b149e5ef..3dccd6da6d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-04 13:49+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "fechado a janela principal ou as opções de segurança do seu navegador estão " "configuradas para bloquear a comunicação entre janelas." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Procurar" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Executar" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nome chave" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Descrição" @@ -117,13 +118,13 @@ msgstr "Comentário do Banco de Dados: " msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Comentários da tabela" msgid "Column" msgstr "Coluna" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Comentários" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Não" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Não" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Ver o esquema do Banco de Dados" msgid "No tables found in database." msgstr "Nenhuma tabela encontrada no banco de dados." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Selecionar Todos" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Desmarcar Todos" @@ -321,12 +322,12 @@ msgstr "Adicionar restrições" msgid "Switch to copied database" msgstr "Mudar para o Banco de Dados copiado" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Colação" @@ -349,17 +350,17 @@ msgstr "Editar ou exportar esquema relacional" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Registros" @@ -374,21 +375,21 @@ msgstr "em uso" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Criação" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Última atualização" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Última verificação" @@ -451,7 +452,7 @@ msgid "Del" msgstr "Deletar" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ou" @@ -492,85 +493,87 @@ msgstr "Enviar consulta SQL" msgid "Access denied" msgstr "Acesso negado" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "todas as palavras" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "a frase exata" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "como expressão regular" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultados da pesquisa para \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s resultado dentro da tabela %2$s" -msgstr[1] "%1$s resultados dentro da tabela %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Visualizar" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Excluir correspondentes para a tabela %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Remover" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s resultado dentro da tabela %2$s" +msgstr[1] "%1$s resultados dentro da tabela %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Visualizar" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Excluir correspondentes para a tabela %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Remover" + +#: db_search.php:362 msgid "Search in database" msgstr "Procurar no Banco de Dados" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Encontrar:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Palavras são separadas por um caracter de espaço (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Dentro da(s) tabela(s):" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Dentro do campo:" @@ -609,18 +612,18 @@ msgstr "Rastreamento não está ativo." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" -"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a " -"%sdocumentação%s." +"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %" +"sdocumentação%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Visão" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -630,93 +633,89 @@ msgstr "Replicação" msgid "Sum" msgstr "Soma" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Com marcados:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Desmarcar todos" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Limpar" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Otimizar tabela" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Adicionar prefixo à tabela" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Substituir prefixo da tabela" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiar tabela com o prefixo" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dicionário de dados" @@ -729,9 +728,9 @@ msgstr "Tabelas rastreadas" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Banco de Dados" @@ -748,17 +747,17 @@ msgstr "Criado" msgid "Updated" msgstr "Atualizado" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Ação" @@ -790,7 +789,7 @@ msgstr "Preview da estrutura" msgid "Untracked tables" msgstr "Tabelas não monitoradas" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Monitorar tabela" @@ -927,8 +926,8 @@ msgstr "" #: import.php:86 #, 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 "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." @@ -1007,13 +1006,13 @@ msgstr "" "aumente o tempo limite do PHP." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Seu comando SQL foi executado com sucesso" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Voltar" @@ -1098,8 +1097,8 @@ msgstr "A senha está em branco!" msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Adicionar usuário" @@ -1117,7 +1116,7 @@ msgid "Close" msgstr "Fechar" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1144,13 +1143,13 @@ msgstr "Dado(s) estático(s)" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Outro" @@ -1180,7 +1179,7 @@ msgstr "Tráfego do Servidor (em KiB)" msgid "Connections since last refresh" msgstr "Conexões desde a última atualização" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processos" @@ -1244,13 +1243,13 @@ msgstr "Área de Troca (Swap) do sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1302,7 +1301,7 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes Recebidos" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Conexões" @@ -1341,11 +1340,11 @@ msgstr "%d tabela(s)" msgid "Questions" msgstr "Requisições" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Configurações" @@ -1374,8 +1373,8 @@ msgstr "Por favor adicione no mínimo uma variável à série" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Nenhum" @@ -1479,7 +1478,7 @@ msgstr "Configurações atuais" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Título do Relatório/Gráfico ou Tabela" @@ -1564,7 +1563,7 @@ msgstr "Demonstrar saída" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Tempo" @@ -1660,10 +1659,10 @@ msgstr "" "Falha ao construir a grade do gráfico com a configuração importada. " "Restaurando a configuração padrão ..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1713,9 +1712,9 @@ msgstr "Variável / formula utilizada" msgid "Test" msgstr "Teste" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Cancelar" @@ -1743,9 +1742,9 @@ msgstr "Excluindo coluna" msgid "Adding Primary Key" msgstr "Adicionar chave primária" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1822,7 +1821,7 @@ msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "A definição de uma função armazenada deve conter uma instrução de RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" @@ -1861,8 +1860,8 @@ msgstr "Mostrar caixa de consulta" msgid "No rows selected" msgstr "Nenhum registro selecionado" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Alterar" @@ -1877,7 +1876,7 @@ msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2386,16 +2385,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "por hora" @@ -2501,8 +2500,8 @@ msgstr "Ordenar pela chave" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opções" @@ -2560,7 +2559,7 @@ msgid "The row has been deleted" msgstr "Registro eliminado" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Matar" @@ -2587,27 +2586,27 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Ver impressão (com textos completos)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Exibir gráfico" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Criar visualização" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Link não encontrado" @@ -2682,46 +2681,46 @@ msgstr "Cookies devem estar ativos após este ponto." msgid "Javascript must be enabled past this point" msgstr "Javascript deve estar ativo após este ponto" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Nenhum índice definido!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Cometário" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "A chave primária foi deletada" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Índice %s foi eliminado" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2730,9 +2729,9 @@ msgstr "" "A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido " "removida." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Banco de Dados" @@ -2742,7 +2741,7 @@ msgstr "Banco de Dados" msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2755,104 +2754,104 @@ msgstr "Servidor" msgid "Structure" msgstr "Estrutura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operações" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Rastreando" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Gatilhos" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabela para estar vazia!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Banco de Dados parece estar vazio!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Procurar por exemplo" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilégios" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rotinas" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Eventos" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Usuário" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log binário" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Conjuntos de caracteres" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motores" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Erro" @@ -2894,66 +2893,66 @@ msgstr "tabelas recentes" msgid "There are no recent tables" msgstr "Não existem tabelas recentes" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponível neste servidor MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s está desabilitado neste servidor MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "Status da tabela desconhecida: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Procurar no Banco de Dados" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s não encontrado!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Banco de Dados inválido" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Nome de tabela inválida" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Table %1$s renomeada para %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Não foi possível salvar as preferências visuais da tabela" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2962,7 +2961,7 @@ msgstr "" "Falha ao limpar as preferências da tabela UI (veja $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2973,22 +2972,22 @@ msgstr "" "constantes depois que você recarregar esta página. Favor cheque se a " "estrutura da tabela foi alterada." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Função" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operador" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Valor" @@ -2998,7 +2997,7 @@ msgstr "Valor" msgid "Table Search" msgstr "Procurar" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3136,14 +3135,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3403,8 +3402,8 @@ msgstr "Bem vindo ao %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "A provável razão para isso é que você não criou o arquivo de configuração. " "Você deve usar o %1$ssetup script%2$s para criar um." @@ -3519,12 +3518,12 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Dados" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Sobrecarga" @@ -3636,18 +3635,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "ing" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "consulta SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3735,7 +3734,7 @@ msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Procurar no seu computador:" @@ -3745,8 +3744,8 @@ msgstr "Procurar no seu computador:" msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir do diretório de upload do servidor %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado" @@ -3932,7 +3931,7 @@ msgstr "Restaurar valor padrão" msgid "Allow users to customize this value" msgstr "Permitir a todos os usuários alterar esse valor" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4225,7 +4224,7 @@ msgid "Character set of the file" msgstr "Conjunto de caracteres do arquivo" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formato" @@ -4525,7 +4524,7 @@ msgstr "Quadro de navegação" msgid "Customize appearance of the navigation frame" msgstr "Personaliza aparência do frame de navegação" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servidores" @@ -5865,7 +5864,7 @@ msgid "" msgstr "" "Define se a caixa de consulta deve estar sobre a tela depois de sua submissão" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Manter caixa de consulta" @@ -6203,7 +6202,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "possível ataque de recursão profunda" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6213,16 +6212,16 @@ msgstr "" "O servidor não está respondendo (ou o soquete do servidor local não está " "configurado corretamente)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "O servidor não está respondendo." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" "Por favor verifique os privilégios do diretório que contém o banco de dados." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detalhes..." @@ -6278,8 +6277,8 @@ msgstr "Criar tabela" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nome" @@ -6386,8 +6385,8 @@ msgstr ", @TABLE@ se tornará o nome da tabela" #| "will be kept as is." 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 "" "Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as " "strings de formatação de tempo. Adicionalmente a seguinte transformação " @@ -6399,7 +6398,7 @@ msgid "use this for future exports" msgstr "use este para futuras exportações" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Conjunto de caracteres do arquivo:" @@ -6903,8 +6902,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6969,7 +6968,7 @@ msgstr "Evento" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7046,7 +7045,7 @@ msgstr "MIME-type disponíveis" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Servidor" @@ -7253,8 +7252,8 @@ msgstr "Tipo de exportação" msgid "No data found for GIS visualization." msgstr "Não foram encontrados dados para a visualização GIS." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou um conjunto vazio (ex. zero registros)." @@ -7424,79 +7423,79 @@ msgstr "Modo de compatibilidade SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Ocultar" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binário" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Por causa da sua largura,
    esse campo pode não ser editável" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binário - não edite" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "Servidor web subiu o diretório" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Reiniciar inserção com %s registros" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "e então" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Inserir como uma linha nova e ignorar erros" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 #, fuzzy msgid "Show insert query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Retornar" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Inserir novo registro" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Voltar para esta página" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Editar próximo registro" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover " "em qualquer direção" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" @@ -7524,7 +7523,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Submeter" @@ -7544,7 +7543,7 @@ msgstr "Adicionar índice" msgid "Do you really want to execute the following query?" msgstr "Você realmente deseja executar a Query SQL a seguir?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Sem Mudança" @@ -7799,7 +7798,7 @@ msgid "" msgstr "" "Consulte a documentação sobre como atualizar sua tabela Column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Consulta SQL gravada" @@ -7848,6 +7847,10 @@ msgstr "" msgid "no description" msgstr "sem Descrição" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Desmarcar todos" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7884,8 +7887,8 @@ msgstr "Exibir status dos escravos" msgid "Slave status" msgstr "Exibir status dos escravos" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variáveis" @@ -7910,7 +7913,7 @@ msgstr "Qualquer usuário" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Usar campo texto" @@ -7941,10 +7944,10 @@ msgid "Generate Password" msgstr "Gerar Senha" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7957,7 +7960,7 @@ msgstr "A seguinte consulta falhou: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Desculpa, mas falhamos ao restaurar a rotina." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "A consulta de backup foi:" @@ -7974,7 +7977,7 @@ msgstr "A rotina %1$s foi modificada." msgid "Event %1$s has been created." msgstr "A tabela %1$s foi criada." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7986,14 +7989,14 @@ msgstr "" msgid "Edit event" msgstr "Editar servidor" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Erro no processamento da requisição" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalhes" @@ -8008,7 +8011,7 @@ msgstr "Tipo de evento" msgid "Event type" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8045,13 +8048,13 @@ msgstr "Fim" msgid "On completion preserve" msgstr "Inserções completas" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8076,7 +8079,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8098,7 +8101,7 @@ msgstr "" msgid "Returns" msgstr "Tipo de returno" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 #, fuzzy #| msgid "" #| "You are using PHP's deprecated 'mysql' extension, which is not capable of " @@ -8115,139 +8118,139 @@ msgstr "" "podem falhar!
    Por favor, use a extensão melhorada 'mysqli' para evitar " "quaisquer problemas." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rotina inválido: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Desculpa, mas falhamos ao restaurar a rotina." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "A rotina %1$s foi modificada." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "A rotina %1$s foi criada." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Editar rotina" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rotinas" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Links diretos" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Tamanho/Definir*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add index" msgid "Add parameter" msgstr "Adicionar índice" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Remover Banco de Dados" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Tipo de returno" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Tamanho/Definir*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opções da tabela" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Segurança" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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 linha afetada pela última instrução dentro do procedimento" msgstr[1] "%d linhas afetadas pela última instrução dentro do procedimento" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Resultados da execução da rotina %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Executar rotina" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8576,7 +8579,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Linguagem desconhecida: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8611,52 +8614,52 @@ msgstr "Procurar no Banco de Dados" msgid "Click to select" msgstr "Clique para selecionar" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Rodar consulta(s) SQL no servidor %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Limpar" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Nome das colunas" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Substituir marcador de mesmo nome existente" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Delimitadores" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Mostrar esta consulta SQL novamente" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Apenas visualizar" @@ -8766,7 +8769,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Índice" @@ -8821,12 +8824,12 @@ msgid "As defined:" msgstr "Como definido:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primária" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Texto completo" @@ -8840,13 +8843,13 @@ msgstr "" msgid "after %s" msgstr "Depois %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adicionar %s campo(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -8905,7 +8908,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Mostrar o link para esta imagem (ex.: blob download direto)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9099,8 +9102,8 @@ msgid "Protocol version" msgstr "Versão do Protocolo" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Usuário" @@ -9237,17 +9240,17 @@ msgstr "" "Servidor rodando com 'Suhosin'. Verifique a %sdocumentation%s para possíveis " "razões do erro." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Sem bases" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Alterar tabela ordenada por" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9272,7 +9275,7 @@ msgstr "Exibir/Ocultar menu da esquerda" msgid "Save position" msgstr "Salvar posição" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Criar relacionamento" @@ -9336,48 +9339,48 @@ msgstr "Ocultar/Exibir Tabelas sem relacionamento" msgid "Number of tables" msgstr "Numero de tabelas" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Apagar relacionamento" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relacionamento apagado" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Exportar" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "na consulta" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Renomear a tabela para " -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Nome do usuário" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Criar" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9555,13 +9558,13 @@ msgstr "Selecionar log binário para exibir" msgid "Files" msgstr "Arquivos" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Truncar as consultas SQL exibidas" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Mostrar consultas completas" @@ -9577,7 +9580,7 @@ msgstr "Posição" msgid "Original position" msgstr "Posição original" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informação" @@ -9606,11 +9609,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Habilitar estatísticas" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9864,7 +9867,7 @@ msgid "None" msgstr "Nenhum" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" @@ -9881,7 +9884,7 @@ msgstr "Administração" msgid "Global privileges" msgstr "Privilégios globais" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilégios específicos do Banco de Dados" @@ -9901,7 +9904,7 @@ msgstr "Informação de login" msgid "Do not change the password" msgstr "Não mudar a senha" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9952,7 +9955,7 @@ msgstr "Os usuários selecionados foram apagados com sucesso." msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Editar Privilégios" @@ -9967,7 +9970,7 @@ msgid "Export all" msgstr "Exportar" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Qualquer" @@ -9989,81 +9992,81 @@ msgstr "Privilégios" msgid "Users overview" msgstr "Avaliação dos usuários" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Remover os usuários selecionados" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios ativos dos usuarios e depois apagar eles." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "privilégios que o servidor usa se alterações manuais forem feitas nele. " "Neste caso, você deve usar %sRELOAD PRIVILEGES%s antes de continuar.." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilégios específicos da coluna" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Adicionar privilégios nas seguintes Banco de Dados" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Coringas _ e % precisam ser precedidos com uma \\ para serem usados " "literalmente" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Adicionar privilégios nas seguintes tabelas" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Mudar informações de login / Copiar usuário" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo usuário com os mesmos privilégios e ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... apagar o antigo da tabela de usuários." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... revogar todos privilégios do usuário antigo e depois apagar ele." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10071,42 +10074,42 @@ msgstr "" " ... apagar o antigo da tabela de usuários e depois recarregar os " "privilégios." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Banco de Dados para usuário" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Criar Banco de Dados com o mesmo nome e conceder todos os privilégios" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilégios no banco de dados "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Usuários que têm acesso à "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 #, fuzzy msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Específico do Banco de Dados" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "coringa" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10389,51 +10392,51 @@ msgstr "Exibir tabelas abertas" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Exibir tabelas abertas" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relações" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Tipo de consulta" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Introdução" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10441,57 +10444,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Comandos" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "Replicação" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10499,47 +10502,47 @@ msgstr "" "Em servidores ocupados, os contadores de byte podem sobrecarregar, então as " "estatísticas como relatadas pelo servidor MySQL podem estar incorretas." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Recebido" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Enviar" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "máx. de conexões concorrentes" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Tentativas falharam" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Comando" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Caso queira ativar o SSL para conexões com o servidor MySQL." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10549,16 +10552,16 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "O número de transações que usaram o cache do log binário temporário." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10570,11 +10573,11 @@ msgstr "" "grande, você pode aumentar o valor de tmp_table_size para fazer as tabelas " "temporárias serem baseadas na memória ou invés de baseadas no disco" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10582,7 +10585,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10590,7 +10593,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10598,23 +10601,23 @@ msgstr "" "O número de processos manipuladores de INSERT DELAYED em uso. Cada tabela " "diferente em que se usa INSERT DELAYED começa seu próprio processo." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "O número de vezes que uma linha foi deletada de uma tabela." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10624,7 +10627,7 @@ msgstr "" "ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. " "Handler_discover indica o número de vezes que tabelas foram descobertas." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10634,7 +10637,7 @@ msgstr "" "alto, sugere que o usuário está fazendo muitas varreduras completas do " "índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10643,7 +10646,7 @@ msgstr "" "alto, é uma boa indicação de que suas consultas e tabelas estejam " "corretamente indexadas." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10653,7 +10656,7 @@ msgstr "" "incrementado se você estiver consultando uma coluna do índice com uma " "restrição da escala ou se você estiver fazendo uma varredura do índice." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10661,7 +10664,7 @@ msgstr "" "O número de requisições para ler a linha precedente na ordem da chave. Este " "método de leitura é usado principalmente para otimizar ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10674,7 +10677,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10686,37 +10689,37 @@ msgstr "" "sugere que suas tabelas não estão corretamente indexadas ou que suas " "consultas não estão escritas para tomar vantagem dos índices que você têm." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "O número de requisições para atualizar uma linha na tabela." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "O número de requisições para inserir uma linha na tabela." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "O número de páginas que contém dados (sujos ou limpos)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "O número de páginas do buffer pool que foram requisitadas para serem " "niveladas." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "O número de páginas livres." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10726,7 +10729,7 @@ msgstr "" "que estão sendo lidas ou escritas atualmente ou aquela não pode ser nivelada " "ou removido por alguma outra razão." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10738,11 +10741,11 @@ msgstr "" "Este valor pode também ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10751,7 +10754,7 @@ msgstr "" "uma consulta faz a varredura de uma parcela grande de uma tabela mas na " "ordem aleatória." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10759,11 +10762,11 @@ msgstr "" "O número de ler-adiante sequenciais InnoDB iniciado. Isto acontece quando o " "InnoDB faz uma varredura sequencial completa da tabela." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "O número de requisições de leitura lógica InnoDB que foram feitas." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10771,7 +10774,7 @@ msgstr "" "O número de leituras lógicas que o InnoDB não pode satisfer do buffer pool e " "teria que fazer uma leitura de página simples" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10785,55 +10788,55 @@ msgstr "" "primeiramente. Este contador conta instâncias dessas esperas. Se o tamanho " "do buffer pool for ajustado corretamente, este valor deve ser pequeno." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "O número de escritas feitas para o buffer pool do InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() à fazer." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "O montante de leitura de dados à fazer, em bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "O número total de dados lidos." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "O número total de dados escritos." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "O montante de escrita de dados à fazer, em bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10841,35 +10844,35 @@ msgstr "" "O número de esperas geradas porque o buffer do log era muito pequeno e teve " "que esperar que fosse nivelada antes de continuar." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "O número de escritas físicas para o arquivo de log." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "O número de escritas fsyncs feitas no arquivo de log." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "O número de bytes escritos para o arquivo de log." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10878,52 +10881,52 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "O número de linhas trancadas que estão esperando atualmente." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "O tempo médio para recuperar uma linha trancada, em milísegundo." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "O tempo total gasto para recuperar linhas trancadas, em milísegundo." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "O máximo de tempo para recuperar uma linha trancada, em milísegundo." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" "O número de vezes que uma linhas trancada teve que esperar para ser escrita." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10931,7 +10934,7 @@ msgstr "" "O número de blocos chave no cache chave que mudaram mas não foram nivelados " "ainda ao disco. Antes era chamado de Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10939,7 +10942,7 @@ msgstr "" "O número de blocos não usados no cache chave. Você pode usar este valor para " "determinar quanto do cache chave está no uso." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10949,17 +10952,17 @@ msgstr "" "indica o número máximo de blocos que estiveram sempre em uso em algum " "momento." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formato do arquivo importado" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "O número de requisições para ler um bloco chave do cache." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10969,26 +10972,26 @@ msgstr "" "alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa " "de falta de cache pode ser calculada como Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "O número de requisições para escrever um bloco chave para o cache." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "O número de escritas físicas para um bloco chave para o disco." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10999,18 +11002,18 @@ msgstr "" "a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " "compilada ainda." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de linhas esperando para serem escritas na fila de INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11018,39 +11021,39 @@ msgstr "" "O número de tabelas que devem estar abertas. Se aberta, as tabelas são " "grandes, o valor do cache de suas tabelas é provavelmente muito pequeno." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "O número de streams que estão abertos (usados principalmente para log)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para a consulta do cache." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11063,7 +11066,7 @@ msgstr "" "recentemente\" (LRU - least recently used) para decidir qual consulta " "remover do cache." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11071,19 +11074,19 @@ msgstr "" "O número de consultas sem cache (não cacheável, ou não pode ser cacheável " "devido à configuração em query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos na consulta do cache." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11091,13 +11094,13 @@ msgstr "" "O número de junções que não usaram índices. Se este valor não for 0, você " "deve cuidadosamente verificar os índices de suas tabelas." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de junções que usaram uma pesquisa de escala na tabela de " "referência." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11106,7 +11109,7 @@ msgstr "" "após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " "índices de suas tabelas.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11114,16 +11117,16 @@ msgstr "" "O número de junções que usaram escalas na primeira tabela. (Não é " "normalmente crítico mesmo se este for grande.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "O número junções que fez uma varredura completa da primeira tabela." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "O número de tabelas temporárias abertas atualmente pelo processo SQL escravo." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11131,11 +11134,11 @@ msgstr "" "Número total (desde o início) de vezes que o processo SQL escravo de " "replicação teve que tentar transações." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto é ON se este servidor é um escravo conectado à um mestre." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11143,12 +11146,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "O número de consultas que levaram mais que long_query_time segundos." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11158,24 +11161,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenações que foram feitas com escalas." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenações que foram feitas scaneando a tabela." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" "O número de vezes que uma tabela trancada foi recuperada imediatamente." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11187,7 +11190,7 @@ msgstr "" "performance, você precisa primeiramente otimizar suas consultas e então, ou " "dividir sua tabela ou usar replicação." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11197,11 +11200,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11213,75 +11216,75 @@ msgstr "" "isso não da um aumento notável de performance se você tem uma boa " "implementação de processos.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Rastreamento não está ativo." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy msgid "Start Monitor" msgstr "Status" -#: server_status.php:1587 +#: server_status.php:1594 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Introdução" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "Adicionar índice" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Atualizar" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adicionar/Remover colunas" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restaurar valor padrão" -#: server_status.php:1631 +#: server_status.php:1640 #, fuzzy #| msgid "1. Introduction" msgid "Monitor Instructions" msgstr "1. Introdução" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11290,7 +11293,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11298,20 +11301,20 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Pausar o monitoramento" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11319,11 +11322,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11334,95 +11337,95 @@ msgstr "" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Remover Gráfico/Tabela ou Relatório" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Tabelas selecionadas" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Nome de tabela inválida" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Adicionar novo servidor" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "Consultas SQL" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Mostrar estatísticas" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Tabelas selecionadas" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tipo de consulta" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11430,7 +11433,7 @@ msgid_plural "%d seconds" msgstr[0] "Segundo" msgstr[1] "Segundo" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -12220,35 +12223,35 @@ msgstr "Verificar integridade referencial:" msgid "Showing tables" msgstr "Mostrar tabelas" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Uso do espaço" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efetivo" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Estatísticas do registros" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "estático" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinâmico" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Tamanho do registro" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Tamanho do registro" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12275,7 +12278,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Restrição de chave estrangeira" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Espacial" @@ -12333,54 +12336,54 @@ msgstr "Um índice foi adicionado a %s" msgid "Show more actions" msgstr "Exibir versões" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Remover coluna(s)" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Visualização para impressão" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Ver relações" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Propor estrutura da tabela" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Adicionar coluna" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "No final da tabela" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "No início da tabela" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Depois %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Criar um índice em %s colunas" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "particionado" @@ -12928,8 +12931,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13065,8 +13068,8 @@ msgstr "" #, fuzzy, php-format #| msgid "%s%% of all connections are aborted. This value should be below 1%%" msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de todas as conexões são abortadas. Este valor deve ser menor do que 1%%" @@ -13439,8 +13442,8 @@ msgstr "" #: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "" -#| "Max_used_connections is at %s%% of max_connections, it should be below " -#| "80%%" +#| "Max_used_connections is at %s%% of max_connections, it should be below 80%" +#| "%" msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" msgstr "" diff --git a/po/ro.po b/po/ro.po index b2c9f3bb54..2a7129748c 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:15+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgstr "" "închisă, sau fereastra-părinte blochează ferestrele din cauza securității " "sistemului." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Caută" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Execută" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nume cheie" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Descriere" @@ -118,13 +119,13 @@ msgstr "Comentarii referitoare la baza de date: " msgid "Table comments" msgstr "Comentarii tabel" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Comentarii tabel" msgid "Column" msgstr "Coloană" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Trimitere la" msgid "Comments" msgstr "Comentarii" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Comentarii" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nu" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Nu" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Vizualizarea schemei bazei de date" msgid "No tables found in database." msgstr "Nu s-a găsit nici un tabel în baza de date." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Selectează tot" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Deselectează tot" @@ -322,12 +323,12 @@ msgstr "Adaugă constrângeri" msgid "Switch to copied database" msgstr "Schimbă la tabela copiată" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Interclasare" @@ -350,17 +351,17 @@ msgstr "Editați sau exportați schema relațională" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Linie" @@ -375,21 +376,21 @@ msgstr "în folosință" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Creare" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Ultima actualizare" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Ultima verficare" @@ -454,7 +455,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Sau" @@ -497,60 +498,28 @@ msgstr "Trimite comanda" msgid "Access denied" msgstr "Acces interzis" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "cel puțin unul dintre cuvinte" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "toate cuvintele" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "fraza exactă" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "ca o expresie" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Caută rezultate pentru \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s rezultat(e) în interiorul tabelului %s" -msgstr[1] "%s rezultat(e) în interiorul tabelului %s" -msgstr[2] "%s rezultat(e) în interiorul tabelului %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Navigare" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Ștergeți potrivirile pentru tabelul %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Șterge" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -559,29 +528,61 @@ msgstr[0] "Total: %s rezultat(e)" msgstr[1] "Total: %s rezultat(e)" msgstr[2] "Total: %s rezultat(e)" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s rezultat(e) în interiorul tabelului %s" +msgstr[1] "%s rezultat(e) în interiorul tabelului %s" +msgstr[2] "%s rezultat(e) în interiorul tabelului %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Navigare" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Ștergeți potrivirile pentru tabelul %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Șterge" + +#: db_search.php:362 msgid "Search in database" msgstr "Caută în baza de date" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Cuvinte sau valori de căutat (metacaracter: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Găsește:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Cuvinte despărțite de un spațiu (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "În interiorul tabelei(lor):" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "In interiorul coloanei::" @@ -620,8 +621,8 @@ msgstr "Monitorizarea nu este activată." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." @@ -630,7 +631,7 @@ msgstr "" msgid "View" msgstr "Vizualizare" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -640,93 +641,89 @@ msgstr "Replicare" msgid "Sum" msgstr "Sumă" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Cele bifate:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Marchează toate" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Demarchează toate" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Verificare depășit" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportă" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Golește" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Aruncă" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Verificare tabel" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimizare tabel" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Reparare tabel" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizare tabel" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Adaugă prefix la tabelă" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Înlocuiește prefixul tabelei" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiază tabelul cu prefix" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dicționar de date" @@ -740,9 +737,9 @@ msgstr "Tabelele urmărite" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza de date" @@ -759,17 +756,17 @@ msgstr "Creat(ă)" msgid "Updated" msgstr "Actualizat(ă)" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Stare" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Acțiune" @@ -805,7 +802,7 @@ msgstr "Instantaneu al structurii" msgid "Untracked tables" msgstr "Tabele fără monitorizare" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Monitorizează tabel" @@ -958,11 +955,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " -"%sdocumentație%s pentru căi de ocolire a acestei limite." +"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %" +"sdocumentație%s pentru căi de ocolire a acestei limite." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1032,13 +1029,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Comanda dumneavoastră SQL a fost executată cu succes" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Înapoi" @@ -1128,8 +1125,8 @@ msgstr "Parola este goală!" msgid "The passwords aren't the same!" msgstr "Parolele nu corespund!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Adaugă utilizator" @@ -1151,7 +1148,7 @@ msgid "Close" msgstr "Închide" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1181,13 +1178,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1217,7 +1214,7 @@ msgstr "Traficul server-ului (în KiB)" msgid "Connections since last refresh" msgstr "Conexiuni de la ultima reîmprospătare" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procese" @@ -1286,13 +1283,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiO" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiO" @@ -1352,7 +1349,7 @@ msgstr "Octeți trimiși" msgid "Bytes received" msgstr "Octeți primiți" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Conexiuni" @@ -1394,11 +1391,11 @@ msgstr "%s tabele" msgid "Questions" msgstr "Versiuni" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1427,8 +1424,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Nici unul(a)" @@ -1529,7 +1526,7 @@ msgstr "Modificați setările" msgid "Current settings" msgstr "Setările curente" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1625,7 +1622,7 @@ msgstr "Explică SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Timp" @@ -1731,10 +1728,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importă" @@ -1790,9 +1787,9 @@ msgstr "Variabilă / formulă folosită" msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Renunță" @@ -1820,9 +1817,9 @@ msgstr "Șterge Coloană" msgid "Adding Primary Key" msgstr "Se adaugă Cheia Primară" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "E bine" @@ -1908,7 +1905,7 @@ msgstr "Ștergere" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definiția unei funcții stocate trebuie să conțină o declarație RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1949,8 +1946,8 @@ msgstr "Afișează casuță interogare" msgid "No rows selected" msgstr "Niciun rând selectat" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Schimbare" @@ -1965,7 +1962,7 @@ msgid "%d is not valid row number." msgstr "%d nu este un număr valid de rînduri." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2502,16 +2499,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "pe secundă" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "pe minut" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "pe oră" @@ -2630,8 +2627,8 @@ msgstr "Sortare după cheie" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opțiuni" @@ -2691,7 +2688,7 @@ msgid "The row has been deleted" msgstr "Linia a fost ștearsă" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Oprește" @@ -2718,30 +2715,30 @@ msgstr "total" msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Arată schema PDF" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Creare relație" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Legatură nevalidă" @@ -2817,55 +2814,55 @@ msgstr "Trebuie sa aveti activat \"cookies\"." msgid "Javascript must be enabled past this point" msgstr "Trebuie sa aveti activat \"cookies\"." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Index nu este definit!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexuri" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unic" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Împachetat" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinalitate" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentariu" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Cheia primară a fost aruncată" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indexul %s a fost aruncat" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Baze de date" @@ -2875,7 +2872,7 @@ msgstr "Baze de date" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2888,103 +2885,103 @@ msgstr "Server" msgid "Structure" msgstr "Structură" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Inserare" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operații" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 #, fuzzy msgid "Tracking" msgstr "Urmărire" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Declanșatori" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabelul pare a fi gol!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Baza de date pare a fi goală!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Interogare prin exemplu" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Drepturi de acces" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Evenimente" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Utilizatori" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronizați" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Jurnal binar" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variabile" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Seturi de caractere" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motoare" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Eroare" @@ -3029,75 +3026,75 @@ msgstr "Tabele recente" msgid "There are no recent tables" msgstr "Nu sunt tabele recente" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Nu există informații detaliate de stare disponibile pentru motorul de " "stocare." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s este disponibil pentru acest server MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s a fost dezactivat pentru acest server MySQL." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "status tabel necunoscut: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Baza de date sursă" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nu a fost găsită!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Bază de date nevalidă" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Denumire de tabel nevalidă" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Eroare la redenumirea tabelului %1$s în %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelului %s i s-a dat un numele de %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3105,22 +3102,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funcție" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operand" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Valoare" @@ -3130,7 +3127,7 @@ msgstr "Valoare" msgid "Table Search" msgstr "Caută" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3267,14 +3264,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3533,8 +3530,8 @@ msgstr "Bine ați venit la %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Motivul probabil pentru aceasta este că nu ați creat un fișier de " "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " @@ -3651,12 +3648,12 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Date" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Asupra" @@ -3777,18 +3774,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Comanda SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3883,7 +3880,7 @@ msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" msgid "Click to toggle" msgstr "Click pentru a selecta" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Caută în calculatorul tău:" @@ -3894,8 +3891,8 @@ msgstr "Caută în calculatorul tău:" msgid "Select from the web server upload directory %s:" msgstr "director de încărcare al serverului Web" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" @@ -4090,7 +4087,7 @@ msgstr "Restaurează valoarea implicită" msgid "Allow users to customize this value" msgstr "Permite utilizatorilor să customizeze această valoare" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4383,7 +4380,7 @@ msgid "Character set of the file" msgstr "Setul de caractere al fișierului" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4699,7 +4696,7 @@ msgstr "Cadru de navigare" msgid "Customize appearance of the navigation frame" msgstr "Personalizează aspectul cadrului de navigare" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servere" @@ -6127,7 +6124,7 @@ msgid "" msgstr "" "Defineşte dacă după submit, casuța de interogare ar trebui să rămână pe ecran" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Reține căsuța de interogare" @@ -6470,7 +6467,7 @@ msgstr "Extensia %s lipsește. Vă rugăm să vă verificați configurația PHP. msgid "possible deep recursion attack" msgstr "posibil atac adânc recursiv" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6478,19 +6475,19 @@ msgstr "" "Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat " "corect)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serverul nu răspunde" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" "Vă rugăm să verificați drepturile de acces ale directorului ce conține baza " "de date." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detalii..." @@ -6547,8 +6544,8 @@ msgstr "Creare tabel" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nume" @@ -6656,24 +6653,24 @@ msgstr ", @TABLE@ va deveni numele tabelei" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." 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 "" "Această valoare este interpretată folosind %1$sstrftime%2$s, ca sa puteţi " "folosi şiruri de formatare a timpului. În plus, următoarele transformări vor " -"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ" -"%5$s pentru detalii." +"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ%5" +"$s pentru detalii." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "folosiţi pentru viitoare exportări" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Setul de caractere al fișierului:" @@ -7210,8 +7207,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7287,7 +7284,7 @@ msgstr "Eveniment" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7360,7 +7357,7 @@ msgstr "Tipuri MIME disponibile" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Gazda" @@ -7569,8 +7566,8 @@ msgstr "Modul de export" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." @@ -7742,82 +7739,82 @@ msgstr "Regim de compatibilitate SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Ascunde" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "" "Datorită lungimii sale,
    acest cîmp s-ar putea să nu fie editabil" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binar - a nu se edita" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "director de încărcare al serverului Web" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Repornește inserția cu %s rînduri" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "și apoi" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Revenire" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Editează rîndul următor" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " "pentru a merge în oricare direcție" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" @@ -7845,7 +7842,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Trimite" @@ -7863,7 +7860,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Sigur doriți să " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Nici o schimbare" @@ -8119,7 +8116,7 @@ msgid "" msgstr "" "Parcurgeti documentatia pentru modul de updatare a Column_comments Table" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Comandă SQL salvată" @@ -8166,6 +8163,10 @@ msgstr "" msgid "no description" msgstr "Nu există descriere" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Demarchează toate" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -8203,8 +8204,8 @@ msgstr "Stare master" msgid "Slave status" msgstr "Stare sclav" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variabil" @@ -8229,7 +8230,7 @@ msgstr "Oricare utilizator" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Utilizare cîmp text" @@ -8262,10 +8263,10 @@ msgid "Generate Password" msgstr "Generează parolă" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8276,7 +8277,7 @@ msgstr "Următoarea interogare a eșuat: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Ne pare rău, nu am putut restaura evenimentul șters." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Interogarea de rezervă era:" @@ -8291,7 +8292,7 @@ msgstr "Evenimentul %1$s a fost modificat." msgid "Event %1$s has been created." msgstr "Evenimentul %1$s a fost creat." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8302,14 +8303,14 @@ msgstr "" msgid "Edit event" msgstr "Editează evenimentul" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Eroare în procesarea cererii" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalii" @@ -8324,7 +8325,7 @@ msgstr "Tip eveniment" msgid "Event type" msgstr "Tip eveniment" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Schimbați în %s" @@ -8353,13 +8354,13 @@ msgstr "Sfârșitul" msgid "On completion preserve" msgstr "Inserări complete" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8384,7 +8385,7 @@ msgstr "Trebuie să introduceți un tip valid pentru eveniment." msgid "You must provide an event definition." msgstr "Trebuie să introduceți o definiție pentru eveniment." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Nou" @@ -8406,7 +8407,7 @@ msgstr "" msgid "Returns" msgstr "Tipul întors" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8418,102 +8419,102 @@ msgstr "" "eșua![/strong] Vă rugăm să folosiți extensia îmbunătățită 'mysqli' pentru a " "evita orice problemă." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Index de server nevalid: „%s”" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabelul %s a fost aruncat" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "Tabelul %1$s a fost creat." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Regim de redactare" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Legături directe" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lungime/Setare" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Adăugați parametru" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Ștergeți ultimul parametru" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Tipul întors" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lungime/Setare" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opțiuni tabel" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Este determinist" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Tip de securitate" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Acces date SQL" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Trebuie să introduceți un nume de rutină" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Direcție invalidă \"%s\" dată pentru parametru." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8521,20 +8522,20 @@ msgstr "" "Trebuie să oferiți lungime/valori pentru parametrii de tipul ENUM, SET, " "VARCHAR și VARBINARY ai rutinei." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" "Trebuie să introduceți un nume și un tip pentru fiecare parametru al rutinei." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Rutina trebuie să întoarcă un tip valid." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Trebuie să introduceți o definiție a rutinei." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8542,18 +8543,18 @@ msgstr[0] "%d rând afectat de ultima declarație din cadrul procedurii" msgstr[1] "%d rânduri afectate de ultima declarație din cadrul procedurii" msgstr[2] "%d rânduri afectate de ultima declarație din cadrul procedurii" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Rezultatele execuției rutinei %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Executați rutina" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Parametrii rutinei" @@ -8876,7 +8877,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Limbă necunoscută: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Server Curent" @@ -8908,53 +8909,53 @@ msgstr "Baza de date țintă" msgid "Click to select" msgstr "Click pentru a selecta" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Execută interogare/interogări SQL pe serverul %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Execută interogare SQL asupra bazei de date %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "Calendar" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Înlocuiește semnul de carte cu același nume" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "A nu se suprascrie peste această interogare din cealaltă fereastră" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Delimitator" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Afișează această interogare din nou aici" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Numai vizualizare" @@ -9062,7 +9063,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Index" @@ -9117,12 +9118,12 @@ msgid "As defined:" msgstr "Conform definiției:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primar" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Tot textul" @@ -9136,13 +9137,13 @@ msgstr "" msgid "after %s" msgstr "După %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adaugă %s cîmp(uri)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9204,7 +9205,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Afișează un link la imagine (direct blob download, i.e.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9423,8 +9424,8 @@ msgid "Protocol version" msgstr "Versiune protocol" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Utilizator" @@ -9558,17 +9559,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Nu sînt baze de date" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "nume tabel" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9593,7 +9594,7 @@ msgstr "Arată/ascunde meniul stîng" msgid "Save position" msgstr "Salvează poziție" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Creare relație" @@ -9657,38 +9658,38 @@ msgstr "Arată/ascunde tabele fără realție" msgid "Number of tables" msgstr "Număr de tabele" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Șterge relația" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Operator relațional" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Cu excepția" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "subinterogare" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Redenumire tabel la" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nume nou" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Agregat" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9861,13 +9862,13 @@ msgstr "Selectați jurnalul binar pentru vizualizare" msgid "Files" msgstr "Fișiere" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Truncare comenzi afișate" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Afișare comandă întreagă" @@ -9883,7 +9884,7 @@ msgstr "Poziție" msgid "Original position" msgstr "Pozitie originală" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informație" @@ -9913,11 +9914,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Activează statisticile" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10177,7 +10178,7 @@ msgid "None" msgstr "Nici unul(a)" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" @@ -10194,7 +10195,7 @@ msgstr "Administrare" msgid "Global privileges" msgstr "Privilegii globale" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" @@ -10216,7 +10217,7 @@ msgstr "Informații de autentificare" msgid "Do not change the password" msgstr "Nu schimbați parola" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10267,7 +10268,7 @@ msgstr "Utilizatorii selectați au fost eliminați." msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Editează drepturile de acces" @@ -10282,7 +10283,7 @@ msgid "Export all" msgstr "Exportă" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Oricare" @@ -10304,124 +10305,124 @@ msgstr "Drepturi de acces" msgid "Users overview" msgstr "Descriere utilizator" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Permite" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Eliminarea utilizatorilor selectați" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " "acestora." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Aruncă baza de date care are același nume ca utilizatorul." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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. " "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Drepturi specifice coloanei" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Adaugă drepturi la baza de date următoare" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Adaugă drepturi la următorul tabel" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Creează un utilizator nou cu aceleași privilegii și..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... menține cel vechi." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... șterge cel vechi din tabelul de utilizatori." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocă toate privilegiile active de la utilizatorul vechi și șterge-l " "după aceea." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Bază de date pentru utilizatorul" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Creează o bază de date cu același nume și acordă toate privilegiile" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verifică privilegiile pentru baza de date "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Utilizatorul are acces la "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "specific bazei de date" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "Metacaracter" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10722,51 +10723,51 @@ msgstr "Afișează tabele deschise" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Afișează tabele deschise" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Legături" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Tip interogare" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Introducere" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10774,118 +10775,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Comenzi" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Acest server MySQL rulează de %s. S-a lansat la %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "Replicare" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Recepționat" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Trimis" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "conexiuni concurente (maxim)" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Încercări nereușite" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Întrerupt" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Comanda" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10893,11 +10894,11 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Cîte fișiere temporare a creat mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10905,68 +10906,68 @@ msgstr "" "Numărul de tabele temporare create automat în memorie de căter server în " "timpul execuției de interogări." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10974,7 +10975,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10982,42 +10983,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Numărul de cereri de a insera un rînd într-un tabel." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Numărul de pagini conținînd date (curate sau murdare)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Numărul de pagini actualmente murdare." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Numărul de pagini libere." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11025,33 +11026,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11060,248 +11061,248 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Numărul de pagini create." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Numărul de pagini citite." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Numărul de pagini scrise." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rînduri citite din tabelele InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rînduri actualizate în tabelele InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formatul fișierului importat" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Numărul de tabele ce sînt deschise." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Numărul de nimeriri în cache." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11309,99 +11310,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Numărul total de blocuri în cache-ul interogării." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Numărul de rînduri sortate." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11409,18 +11410,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Numărul de conexiuni deschise momentan." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11428,74 +11429,74 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Monitorizarea nu este activată" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Dum" -#: server_status.php:1587 +#: server_status.php:1594 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Introducere" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Adaugă %s cîmp(uri)" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Reîncarcă" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adaugă/șterge coloane" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Introducere" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11504,7 +11505,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11512,18 +11513,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11531,11 +11532,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11543,93 +11544,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Redenumire bază de date în" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Selectează tabele" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Denumire de tabel nevalidă" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Adaugă un server nou" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "Comanda SQL" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Statisticile rîndului" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Selectează tabele" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tip interogare" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11638,7 +11639,7 @@ msgstr[0] "pe secundă" msgstr[1] "pe secundă" msgstr[2] "pe secundă" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12417,35 +12418,35 @@ msgstr "Verificarea integrității referinței:" msgid "Showing tables" msgstr "Arată tabelele" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Utilizare spațiu" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efectiv" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statisticile rîndului" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamic" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Lungime linie" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Mărime rând" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12473,7 +12474,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Constrângeri ale cheii străine" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12530,56 +12531,56 @@ msgstr "A fost adăugat un index la %s" msgid "Show more actions" msgstr "Arată informația PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "Adaugă coloane" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Vizualizare imprimare" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Vizualizare relațională" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Propune structura de tabele" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Adaugă %s cîmp(uri)" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "La sfîrșitul tabelului" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "La începutul tabelului" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "După %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Creează un index pe %s coloană" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partiționat" @@ -13105,8 +13106,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13240,8 +13241,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ru.po b/po/ru.po index 517f1a3eb0..901cc58c02 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-21 12:09+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" "X-Generator: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgstr "" "родительское окно или ваш браузер блокирует межоконные обновления из-за " "настроек безопасности." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Поиск" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Имя индекса" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Описание" @@ -118,13 +119,13 @@ msgstr "Комментарий к базе данных: " msgid "Table comments" msgstr "Комментарий к таблице" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Комментарий к таблице" msgid "Column" msgstr "Поле" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Связи" msgid "Comments" msgstr "Комментарии" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Комментарии" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Нет" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Нет" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Отобразить дамп (схему) базы данных" msgid "No tables found in database." msgstr "Таблиц в базе данных не обнаружено." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Выделить все" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Снять выделение" @@ -322,12 +323,12 @@ msgstr "Добавить ограничения" msgid "Switch to copied database" msgstr "Переключиться на скопированную базу данных" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Сравнение" @@ -350,17 +351,17 @@ msgstr "Редакция или экспорт схемы связей" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Таблица" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Строки" @@ -375,21 +376,21 @@ msgstr "используется" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Создание" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Последнее обновление" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Последняя проверка" @@ -454,7 +455,7 @@ msgid "Del" msgstr "Удалить" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Или" @@ -495,59 +496,28 @@ msgstr "Выполнить запрос" msgid "Access denied" msgstr "В доступе отказано" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "любое из слов" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "все слова" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "точное соответствие" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "регулярное выражение" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результаты поиска по \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s соответствие в таблице %2$s" -msgstr[1] "%1$s соответствия в таблице %2$s" -msgstr[2] "%1$s соответствий в таблице %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Обзор" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Удалить соответствия для таблицы %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Удалить" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -555,27 +525,60 @@ msgstr[0] "Итого: %s соответствие" msgstr[1] "Итого: %s соответствия" msgstr[2] "Итого: %s соответствий" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s соответствие в таблице %2$s" +msgstr[1] "%1$s соответствия в таблице %2$s" +msgstr[2] "%1$s соответствий в таблице %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Обзор" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Удалить соответствия для таблицы %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Удалить" + +#: db_search.php:362 msgid "Search in database" msgstr "Поиск в базе данных" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова или значения для поиска (групповой символ: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Искать:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Слова разделяются пробелом (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "В таблицах:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "В поле:" @@ -614,8 +617,8 @@ msgstr "Слежение выключено." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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." @@ -625,7 +628,7 @@ msgstr "" msgid "View" msgstr "Представление" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -635,93 +638,89 @@ msgstr "Репликация" msgid "Sum" msgstr "Всего" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "С отмеченными:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Отметить все" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Снять выделение" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Очистить" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Удалить" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Проверить таблицу" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Оптимизировать таблицу" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Восстановить таблицу" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Анализ таблицы" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Добавить префикс таблицы" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Заменить префикс таблицы" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Копировать таблицу с префиксом" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Словарь данных" @@ -734,9 +733,9 @@ msgstr "Отслеживаемые таблицы" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "База данных" @@ -753,17 +752,17 @@ msgstr "Создан" msgid "Updated" msgstr "Обновлён" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Состояние" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Действие" @@ -795,7 +794,7 @@ msgstr "Обзор структуры" msgid "Untracked tables" msgstr "Неотслеживаемые таблицы" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Отслеживать таблицу" @@ -932,8 +931,8 @@ msgstr "" #: import.php:86 #, 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." @@ -1012,13 +1011,13 @@ msgstr "" "пока не будет увеличено ограничение времени выполнения php-сценариев." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL-запрос был успешно выполнен" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" @@ -1102,8 +1101,8 @@ msgstr "Пароль не задан!" msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Добавить пользователя" @@ -1121,7 +1120,7 @@ msgid "Close" msgstr "Закрыть" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1148,13 +1147,13 @@ msgstr "Статические данные" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Всего" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Другое" @@ -1184,7 +1183,7 @@ msgstr "Трафик сервера (в KiB)" msgid "Connections since last refresh" msgstr "Соединений с момента последнего обновления" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Процессы" @@ -1248,13 +1247,13 @@ msgstr "Система подкачки" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "КБ" @@ -1306,7 +1305,7 @@ msgstr "Отослано байт" msgid "Bytes received" msgstr "Принято байт" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Соединения" @@ -1345,11 +1344,11 @@ msgstr "%d таблиц(а)" msgid "Questions" msgstr "Вопросы" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Настройки" @@ -1372,8 +1371,8 @@ msgstr "Пожалуйста, добавьте в серию хотя бы од #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Нет" @@ -1474,7 +1473,7 @@ msgstr "Изменить настройки" msgid "Current settings" msgstr "Текущие настройки" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Заголовок графика" @@ -1561,7 +1560,7 @@ msgstr "Анализ результатов" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Время" @@ -1655,10 +1654,10 @@ msgstr "" "Ошибка построения сетки графика из импортированной конфигурации. Сброшено на " "изначальную конфигурацию..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1706,9 +1705,9 @@ msgstr "Использованная переменная / формула" msgid "Test" msgstr "Тест" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Отмена" @@ -1736,9 +1735,9 @@ msgstr "Удаление столбца" msgid "Adding Primary Key" msgstr "Добавление первичного ключа" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1814,7 +1813,7 @@ msgstr "Удаление" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Определение хранимой функции должно содержать выражение RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Редактор ENUM/SET" @@ -1854,8 +1853,8 @@ msgstr "Отобразить поле запроса" msgid "No rows selected" msgstr "Для совершения действия необходимо выбрать одну или несколько строк" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Изменить" @@ -1870,7 +1869,7 @@ msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2377,19 +2376,19 @@ msgstr "Неожиданные символы на строке %s" #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден " -"\"%2$s\"" +"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден \"%2" +"$s\"" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "в секунду" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "в минуту" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "в час" @@ -2490,8 +2489,8 @@ msgstr "Сортировать по индексу" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Параметры" @@ -2544,7 +2543,7 @@ msgid "The row has been deleted" msgstr "Запись была удалена" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Завершить" @@ -2573,27 +2572,27 @@ msgstr "всего" msgid "Query took %01.4f sec" msgstr "Запрос занял %01.4f сек." -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Отобразить график" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Визуализация GIS данных" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Создать представление" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Связь не найдена" @@ -2670,55 +2669,55 @@ msgstr "Для полноценной работы необходима подд msgid "Javascript must be enabled past this point" msgstr "Для полноценной работы необходима поддержка Javascript браузером" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Индекс не определен!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индексы" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Уникальный" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Упакован" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Уникальных элементов" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Комментарий" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Первичный ключ был удален" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s был удален" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Базы данных" @@ -2728,7 +2727,7 @@ msgstr "Базы данных" msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2741,102 +2740,102 @@ msgstr "Сервер" msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Вставить" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операции" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Слежение" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Триггеры" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Таблица - пуста!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Пустая база данных!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Запрос по шаблону" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Привилегии" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Процедуры" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "События" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Пользователи" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Синхронизировать" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Бинарный журнал" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Переменные" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Кодировки" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Расширения" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Типы таблиц" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Ошибка" @@ -2881,64 +2880,64 @@ msgstr "Недавние таблицы" msgid "There are no recent tables" msgstr "Отсутствуют недавние таблицы" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Дополнительная информация о состоянии данного типа таблиц - отсутствует." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "Данный MySQL-сервер поддерживает таблицы типа %s." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Тип таблиц %s был отключен на данном MySQL сервере." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Данный сервер MySQL не поддерживает тип таблиц %s." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "Неизвестный статус таблицы: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "База данных `%s`, являющаяся источником, не найдена!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "База данных `%s`, являющаяся целевой, не найдена!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Некорректная база данных" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Неправильное имя таблицы" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Ошибка при переименовании таблицы %1$s в %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s была переименована в %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Не получилось сохранить настройки интерфейса таблицы" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2947,7 +2946,7 @@ msgstr "" "Ошибка при очистке таблицы содержащей настройки пользовательского интерфейса " "(смотрите переменную $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2958,22 +2957,22 @@ msgstr "" "перезагрузки страницы, изменения интерфейса будут отменены. Пожалуйста, " "проверьте изменена ли структура таблицы." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Функция" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Оператор" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Значение" @@ -2981,7 +2980,7 @@ msgstr "Значение" msgid "Table Search" msgstr "Поиск в таблице" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Редактировать/Вставить" @@ -3108,8 +3107,8 @@ msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -"Восьми-байтовое целое число, диапазон чисел со знаком от " -"-9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без " +"Восьми-байтовое целое число, диапазон чисел со знаком от -" +"9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без " "знака от 0 до 18,446,744,073,709,551,615" #: libraries/Types.class.php:305 libraries/Types.class.php:711 @@ -3123,20 +3122,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до " -"-1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38" +"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до -" +"1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Число с плавающей точкой удвоенной точности, допустимые значения от " -"-1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от " +"Число с плавающей точкой удвоенной точности, допустимые значения от -" +"1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от " "2.2250738585072014E-308 до 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3183,8 +3182,8 @@ msgid "" "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" "Временная метка, диапазон от \"1970-01-01 00:00:01\" UTC до \"2038-01-09 " -"03:14:07\" UTC, содержит количество секунд прошедших со времени " -"(\"1970-01-01 00:00:00\" UTC)" +"03:14:07\" UTC, содержит количество секунд прошедших со времени (\"1970-01-" +"01 00:00:00\" UTC)" #: libraries/Types.class.php:325 libraries/Types.class.php:727 #, php-format @@ -3433,8 +3432,8 @@ msgstr "Добро пожаловать в %s" #: libraries/auth/config.auth.lib.php:98 #, 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." @@ -3548,12 +3547,12 @@ msgstr "Таблицы" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Данные" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Фрагментировано" @@ -3667,18 +3666,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-запрос" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3767,7 +3766,7 @@ msgstr "" msgid "Click to toggle" msgstr "Кликните для переключения" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" @@ -3777,8 +3776,8 @@ msgstr "Обзор вашего компьютера:" msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" @@ -3962,7 +3961,7 @@ msgstr "Восстановить изначальное значение" msgid "Allow users to customize this value" msgstr "Разрешить пользователям изменять данное значение" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4257,7 +4256,7 @@ msgid "Character set of the file" msgstr "Кодировка файла" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Формат" @@ -4559,7 +4558,7 @@ msgstr "Фрейм навигации" msgid "Customize appearance of the navigation frame" msgstr "Настройки отображения фрейма навигации" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Сервера" @@ -5912,7 +5911,7 @@ msgid "" msgstr "" "Определяет будет ли форма запроса оставаться на экране после его отправки" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Оставить поле запроса" @@ -6256,22 +6255,22 @@ msgstr "Расширение %s не найдено. Пожалуйста, пр msgid "possible deep recursion attack" msgstr "возможная атака глубокой рекурсии" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Сервер не отвечает." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Детали..." @@ -6326,8 +6325,8 @@ msgstr "Создать таблицу" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Имя" @@ -6429,8 +6428,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, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -6442,7 +6441,7 @@ msgid "use this for future exports" msgstr "использовать для будущего экспорта" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Кодировка файла:" @@ -6962,8 +6961,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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." @@ -7025,7 +7024,7 @@ msgstr "Событие" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Определение" @@ -7086,7 +7085,7 @@ msgstr "Отобразить MIME типы" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Хост" @@ -7306,8 +7305,8 @@ msgstr "Экспортировать содержимое" msgid "No data found for GIS visualization." msgstr "Данные для визуализации GIS не найдены." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." @@ -7482,77 +7481,77 @@ msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" "Не использовать атрибут AUTO_INCREMENT для нулевых значений" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Скрыть" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Двоичный" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Из-за большого количества данных
    изменение поля невозможно" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Двоичные данные - не редактируются" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "Из каталога загрузки" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Продолжить вставку с %s строки" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "и затем" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Вставить запись" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Отобразить запрос вставки" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Добавить новую запись" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" @@ -7576,7 +7575,7 @@ msgid "To" msgstr "До" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Выполнить" @@ -7592,7 +7591,7 @@ msgstr "Добавить префикс" msgid "Do you really want to execute the following query?" msgstr "Вы действительно хотите выполнить данный запрос?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Нет изменений" @@ -7843,7 +7842,7 @@ msgid "" msgstr "" "Необходимо обновить таблицу column_comments. Детали смотрите в документации." -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Созданные закладки" @@ -7895,6 +7894,10 @@ msgstr "" msgid "no description" msgstr "нет описания" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Снять выделение" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Настройка подчиненного сервера" @@ -7931,8 +7934,8 @@ msgstr "Статус Master" msgid "Slave status" msgstr "Статус Slave" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Переменная" @@ -7959,7 +7962,7 @@ msgstr "Любой пользователь" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Использовать текстовое поле" @@ -7992,10 +7995,10 @@ msgid "Generate Password" msgstr "Создать пароль" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8006,7 +8009,7 @@ msgstr "Данный запрос не был выполнен: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Невозможно восстановить удаленное событие." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Сохраненный запрос был:" @@ -8021,7 +8024,7 @@ msgstr "Было изменено событие %1$s." msgid "Event %1$s has been created." msgstr "Было создано событие %1$s." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "При обработке вашего запроса были обнаружены ошибки:" @@ -8030,14 +8033,14 @@ msgstr "При обработке вашего запроса были обн msgid "Edit event" msgstr "Редактировать событие" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Ошибка при обработке запроса" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Детали" @@ -8050,7 +8053,7 @@ msgstr "Название события" msgid "Event type" msgstr "Тип события" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Изменить на %s" @@ -8077,13 +8080,13 @@ msgstr "Конец" msgid "On completion preserve" msgstr "Сохранить при окончании" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Определитель" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Определитель должен быть в формате \"username@hostname\"" @@ -8108,7 +8111,7 @@ msgstr "Необходимо задать корректный тип событ msgid "You must provide an event definition." msgstr "Вы должны задать определение события." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Новый" @@ -8128,7 +8131,7 @@ msgstr "Статус планировщика событий" msgid "Returns" msgstr "Возвращает" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8140,89 +8143,89 @@ msgstr "" "процедур может привести к ошибке![/strong] Пожалуйста, для избежания " "проблем, используйте улучшенное 'mysqli' расширение." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ошибочный тип процедуры: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Невозможно восстановить удаленную процедуру." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Была изменена процедура %1$s." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Была создана процедура %1$s." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Изменить процедуру" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Имя процедуры" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Параметры" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Направление" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Длина/значения" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Добавить параметр" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Удалить последний параметр" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Возвращаемый тип" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Вернуть длину/значения" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Вернуть параметры" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Определяющий" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Тип безопасности" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Доступ к SQL данным" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Необходимо задать имя процедуры" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "\"%s\" является ошибочным параметром." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8230,19 +8233,19 @@ msgstr "" "Вы должны задать длину/значения для параметров процедуры имеющих тип ENUM, " "SET, VARCHAR и VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Вы должны задать имя и тип для каждого параметра процедуры." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Необходимо задать корректный возвращаемый тип для процедуры." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Вы должны задать определение процедуры." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8250,18 +8253,18 @@ msgstr[0] "Последним выражением в процедуре был msgstr[1] "Последним выражением в процедуре были затронуты %d строки" msgstr[2] "Последним выражением в процедуре было затронуто %d строк" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Результаты выполнения процедуры %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Выполнить процедуру" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Параметры процедуры" @@ -8544,7 +8547,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Неизвестный язык: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Текущий сервер" @@ -8575,50 +8578,50 @@ msgstr "Целевая база данных" msgid "Click to select" msgstr "Выделение" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Выполнить SQL-запрос(ы) на сервере %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Выполнить SQL-запрос(ы) к базе данных %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Очистить" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Столбцы" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Заменить существующую с таким же именем" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Заблокировать содержимое окна запросов" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Разделитель" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Показать данный запрос снова" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Просмотр" @@ -8720,7 +8723,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Индекс" @@ -8771,12 +8774,12 @@ msgid "As defined:" msgstr "Как определено:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Первичный" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Полнотекстовый" @@ -8789,12 +8792,12 @@ msgstr "первый" msgid "after %s" msgstr "после %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Добавить %s поле(я)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Необходимо добавить хотя бы одно поле." @@ -8852,7 +8855,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Отображает ссылку для загрузки изображения." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9027,8 +9030,8 @@ msgid "Protocol version" msgstr "Версия протокола" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Пользователь" @@ -9165,15 +9168,15 @@ msgstr "" "Сервер использует защитную систему Suhosin. Для решения возможных проблем " "обратитесь к %sдокументации%s." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Базы данных отсутствуют" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "Фильтровать базы данных по имени" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Фильтровать таблицы по имени" @@ -9194,7 +9197,7 @@ msgstr "Показать/скрыть левое меню" msgid "Save position" msgstr "Сохранить расположение таблиц" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Создать связь" @@ -9254,37 +9257,37 @@ msgstr "Скрыть/отобразить таблицы не имеющие с msgid "Number of tables" msgstr "Количество таблиц" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Удалить связь" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Оператор" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Кроме" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "подзапрос" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Переименовать в" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Новое имя" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Объединение" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Активные параметры" @@ -9448,13 +9451,13 @@ msgstr "Выберите бинарный журнал для просмотра msgid "Files" msgstr "Файлов" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Сокращенное отображение запросов" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Развернутое отображение запросов" @@ -9470,7 +9473,7 @@ msgstr "Позиция" msgid "Original position" msgstr "Исходная позиция" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Информация" @@ -9499,11 +9502,11 @@ msgstr "Репликация головного сервера" msgid "Slave replication" msgstr "Репликация подчинённого сервера" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Включить статистику" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9757,7 +9760,7 @@ msgid "None" msgstr "Нет" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Привилегии уровня таблицы" @@ -9774,7 +9777,7 @@ msgstr "Администрирование" msgid "Global privileges" msgstr "Глобальные привилегии" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" @@ -9795,7 +9798,7 @@ msgstr "Информация учетной записи" msgid "Do not change the password" msgstr "Не менять пароль" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Пользователь не найден." @@ -9844,7 +9847,7 @@ msgstr "Выбранные пользователи были успешно уд msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Редактирование привилегий" @@ -9857,7 +9860,7 @@ msgid "Export all" msgstr "Экспорт" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Любой" @@ -9874,126 +9877,126 @@ msgstr "Привилегии для %s" msgid "Users overview" msgstr "Обзор учетных записей" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Удалить выделенных пользователей" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отменить все активные привилегии пользователей и затем удалить их." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Выделенный пользователь не был найден в таблице привилегий." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Привилегии уровня столбца" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Добавить привилегии на следующую базу" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "При использовании в имени базы данных символов нижнего подчеркивания _ и " "процента %, необходимо экранировать их символом обратной косой черты \\, в " "противном случае они будут интерпретированы как групповые символы" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Добавить привилегии на следующую таблицу" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Изменить/Копировать учетную запись" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Создать нового пользователя с такими же привилегиями..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "и сохранить старого." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "и удалить старого из таблиц пользователей." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr ", отменить все активные привилегии старого и затем удалить его." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "База данных для пользователя" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "Создать базу данных с именем пользователя в названии и предоставить на нее " "полные привилегии" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Предоставить полные привилегии на базы данных подпадающие под шаблон (имя " "пользователя\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Выставить полные привилегии на базу данных "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Пользователи с правами доступа к "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "Глобальный уровень" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Уровень базы данных" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "Групповой символ" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Пользователь был добавлен." @@ -10282,23 +10285,23 @@ msgstr "Выводить только предупреждающие значе msgid "Filter by category..." msgstr "Фильтр по категории..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Выводить неотформатированные значения" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Связанные ссылки:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Запустить анализ" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Инструкции" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10306,7 +10309,7 @@ msgstr "" "Система советов может предоставлять рекомендации по переменным сервера, " "основываясь на анализе их статуса." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10315,7 +10318,7 @@ msgstr "" "Однако, данная система предоставляет рекомендации основываясь на " "примитивных подсчетах и может быть не применима к вашему серверу." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10325,7 +10328,7 @@ msgstr "" "(прочитайте документацию) и знаете как отменить настройки. Ошибочная " "настройка может отрицательно сказаться на производительности." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10337,31 +10340,31 @@ msgstr "" "работе." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Вопросов начиная с запуска: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Характеристика" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "Кол-во" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Сетевой трафик с момента запуска: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Сервер MySQL работает %1$s. Запущен %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10369,16 +10372,16 @@ msgstr "" "Данный MySQL сервер настроен головным и подчиненным в процессе " "репликации." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Данный сервер настроен подчиненным в процессе репликации." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10386,11 +10389,11 @@ msgstr "" "Для получения подробной информации о состоянии репликации сервера, " "пожалуйста, перейдите в раздел репликации." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Состояние репликации" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10398,35 +10401,35 @@ msgstr "" "На загруженном сервере, побайтовые счетчики могут переполняться, таким " "образом, статистика, передаваемая MySQL-сервером, может быть некорректной." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Принято" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Отправлено" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Максимально одновременных" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Неудачных попыток" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Прерваны" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Команда" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10434,11 +10437,11 @@ msgstr "" "Количество прерванных соединений в связи с потерей связи и неверно закрытым " "соединением клиента." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Количество неудавшихся попыток соединения к серверу MySQL." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10448,16 +10451,16 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кеш бинарного журнала." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10469,11 +10472,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10481,7 +10484,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10489,31 +10492,31 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Количество обрабатываемых запросов INSERT DELAYED." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строк из таблицы." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10523,7 +10526,7 @@ msgstr "" "определенным именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10534,7 +10537,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10543,7 +10546,7 @@ msgstr "" "значение переменной говорит о том, что запросы и таблицы проиндексированы " "надлежащим образом." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10553,7 +10556,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10561,7 +10564,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки при ниспадающей сортировке " "индекса. Обычно используется при оптимизации: ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10574,7 +10577,7 @@ msgstr "" "требующих полного сканирования таблиц, наличием объединений не использующих " "индексы надлежащим образом." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10586,39 +10589,39 @@ msgstr "" "что таблицы не проиндексированы надлежащим образом или запросы не используют " "преимущества индексов." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строк в таблице." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строк в таблицу." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Количество страниц содержащих данные ("грязные" или "" "чистые")." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Текущее количество "грязных" страниц." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, над которыми был осуществлен процесс " "очистки (FLUSH)." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10628,7 +10631,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи, либо они не могут быть " "очищены или удалены по какой-либо другой причине." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10640,11 +10643,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10652,7 +10655,7 @@ msgstr "" "Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " "происходит, когда запрос сканирует большую часть таблицы в случайном порядке." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10661,11 +10664,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10673,7 +10676,7 @@ msgstr "" "Количество последовательных запросов на чтение, которые InnoDB не смог " "выполнить из буферного пула и использовал постраничное чтение." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10687,55 +10690,55 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен должным образом, " "значение будет небольшим." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество записей, выполненных в буферный пул InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync(), выполненных на данный момент." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Сумма данных (в байтах), прочитанных на данный момент." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Сумма данных (в байтах), записанных на данный момент." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10743,36 +10746,36 @@ msgstr "" "Количество ожиданий очистки журнального буфера, вследствие малого его " "размера." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Количество физических записей в файл журнала." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" "Количество незавершенных попыток синхронизации с помощью операции fsync." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Количество незавершенных запросов на запись в журнал." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Объем данных в байтах, записанных в файл журнала." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10781,51 +10784,51 @@ msgstr "" "приводятся в страницах, но зная объем страницы, можно перевести эти значения " "в байты." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество строк, удаленных из таблиц InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество строк, добавленных в таблицы InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Количество строк, прочитанных из таблиц InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Количество строк, обновленных в таблицах InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10833,7 +10836,7 @@ msgstr "" "Количество блоков в кеше индекса, которые были изменены, но еще не записаны " "на диск. Данный параметр также известен как Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10841,7 +10844,7 @@ msgstr "" "Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " "определить как полно используется кеш индекса." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10850,16 +10853,16 @@ msgstr "" "Количество используемых блоков в кеше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" "Процентное соотношение использованного кеша ключей (подсчитанное значение)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кеша индексов." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10870,7 +10873,7 @@ msgstr "" "key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " "как: Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10878,22 +10881,22 @@ msgstr "" "Промахи кеша ключей рассчитываются, как соотношение физических чтений " "сравнительно к запросам чтения (подсчитанное значение)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кеш индекса." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Процентное соотношение физических процессов записи сравнительно к запросам " "записи (подсчитанное значение)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10904,7 +10907,7 @@ msgstr "" "одного запроса. Изначальное нулевое значение, означает, что процесса " "компиляции запроса еще не было." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10912,11 +10915,11 @@ msgstr "" "Максимальное количество соединений использованных одновременно начиная с " "запуска сервера." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10924,20 +10927,20 @@ msgstr "" "Общее количество открывавшихся таблиц. При большом значении переменной " "рекомендуется увеличить размер кеша таблиц (table_cache)." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (в основном применяется к файлам журналов)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10947,21 +10950,21 @@ msgstr "" "указывать на фрагментацию, проблема которой решается выполнением запроса " "FLUSH QUERY CACHE." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Объем свободной памяти для кеша запросов." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" "Количество "попаданий" в кеш запросов, т.е. сколько запросов было " "удовлетворено запросами, находящимися в кеше." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Количество запросов, добавленных в кеш запросов." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10974,7 +10977,7 @@ msgstr "" "не использующиеся страницы заменяются новыми) при принятии решения об " "удаления запроса из кеша." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10982,19 +10985,19 @@ msgstr "" "Количество запросов, которые оказались некешируемыми или для которых " "кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Количество запросов, зарегистрированных в кеше." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11002,13 +11005,13 @@ msgstr "" "Количество запросов-объединений, выполненных без использования индексов. " "Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений, выполненных с использованием поиска по " "диапазону в таблице, на которую делается ссылка." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11017,7 +11020,7 @@ msgstr "" "диапазону для выборки строк из вторичной таблицы. Если значение переменной " "не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11026,18 +11029,18 @@ msgstr "" "диапазону в первой таблице. Обычно значение этой переменной не критично, " "даже если оно велико." -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" "Количество запросов-объединений, выполненных с использованием полного поиска " "по первой таблице." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество временных таблиц, открытых в настоящий момент подчиненным потоком." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11045,13 +11048,13 @@ msgstr "" "Общее количество повторов транзакций подчиненным потоком репликации с " "момента запуска." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер функционирует как подчиненный, " "подключенный к главному." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11059,12 +11062,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более чем " "slow_launch_time секунд." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11073,28 +11076,28 @@ msgstr "" "Количество проходов, сделанных алгоритмом сортировки. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" "Количество операций сортировки, выполненных с использованием диапазона." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки, выполненных с использованием полного " "сканирования таблицы." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11106,7 +11109,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11116,11 +11119,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11132,47 +11135,47 @@ msgstr "" "thread_cache_size (это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков)." -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Соотношение обращений в кеш потока (подсчитанное значение)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Запустить монитор" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Инструкции/Настройки" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Завершено редактирование графиков" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Добавить график" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Упорядочить/отредактировать графики" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Частота обновления" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Столбцы графика" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Расположение гарфика" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11180,15 +11183,15 @@ msgstr "" "Расположения графиков сохраняются в локальном хранилище браузера. При " "наличии сложной настройки, вы можете осуществить ее экспорт." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Восстановить изначальное значение" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Инструкции мониторинга" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11202,7 +11205,7 @@ msgstr "" "general_log. Будьте внимательны, включение general_log производит увеличение " "хранимых данных и увеличивает нагрузку на сервер до 15%." -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11214,11 +11217,11 @@ msgstr "" "phpMyAdmin. Сохранение журналов в таблицу поддерживается MySQL 5.1.6 и выше. " "Однако, вы все еще можете использовать функции графиков сервера." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Использование мониторинга:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11229,7 +11232,7 @@ msgstr "" "настройках, или удалить график используя соответствующую иконку на каждом из " "них." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11241,11 +11244,11 @@ msgstr "" "будет загружена таблица сгруппированных запросов, где вы сможете кликнуть на " "любые выражения SELECT, для их последующего анализа." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Примечание:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11258,79 +11261,79 @@ msgstr "" "небольшие промежутки времени, а так же отключать general_log и очищать его " "таблицу, когда мониторинг больше не требуется." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Заготовки графиков" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Переменные состояния" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Выберите серии:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Частый мониторинг" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "или задайте имя переменной:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Отобразить в виде значения разницы" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Применить делитель" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Добавить к значениям единицу измерения" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Добавить данные серии" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Очистить серии" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Серии в графике:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Статистика журналов" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Выбранный диапазон времени:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Выполнять только выражения SELECT,INSERT,UPDATE и DELETE" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Для лучшей группировки, удалить данные переменной в запросах INSERT" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Выберите из какого журнала должна генерироваться статистика." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Результаты сгруппированы по тексту запроса." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Анализ запроса" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11338,7 +11341,7 @@ msgstr[0] "%d секунда" msgstr[1] "%d секунды" msgstr[2] "%d секунд" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11752,8 +11755,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 не является выделенным и " "кроме вас принадлежит тысячам пользователей того же Интернет Провайдера." @@ -12127,35 +12130,35 @@ msgstr "Проверить целостность данных:" msgid "Showing tables" msgstr "Отображение таблиц" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Используемое пространство" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Эффективность" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Статистика строк" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "статический" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "динамический" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Длина строки" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Размер строки" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Следующий автоматический индекс" @@ -12180,7 +12183,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ограничение внешнего ключа" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Пространственный" @@ -12230,49 +12233,49 @@ msgstr "Был добавлен индекс для %s" msgid "Show more actions" msgstr "Показать больше операций" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Переместить поля" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Переместите поля перетаскивая их вверх и вниз." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Редактировать представление" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Связи" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Анализ структуры таблицы" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Добавить столбец" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "В конец таблицы" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "В начало таблицы" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "После %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Создать индекс для  %s столбца/ов" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "разделён" @@ -12817,8 +12820,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Текущее соотношение свободного кеша запросов по отношению к полному кешу " "запросов составляет %s%%. Значение должно быть выше 80%%" @@ -12975,8 +12978,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% сортировок вызывает создание временных таблиц, данное значение должно " "быть ниже 10%%." diff --git a/po/si.po b/po/si.po index 4b656d41a1..93902d4088 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" -"PO-Revision-Date: 2012-05-11 19:33+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" +"PO-Revision-Date: 2012-06-24 15:15+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: Weblate 1.0\n" @@ -37,53 +37,54 @@ msgstr "" "ඉලක්කගත බ්‍රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ ඔබගේ බ්‍රව්සරයේ " "ආරක්ෂක සැකසුම් අන්තර් කවුළු යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "සෙවීම" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "යන්න" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "යතුරු නම" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "විස්තරය" @@ -114,13 +115,13 @@ msgstr "දත්තගබඩා විස්තර: " msgid "Table comments" msgstr "වගු විස්තර" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -129,30 +130,30 @@ msgstr "වගු විස්තර" msgid "Column" msgstr "තීර" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "වර්ගය" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -190,8 +191,8 @@ msgstr "සම්බන්ද වන්නේ" msgid "Comments" msgstr "විස්තරය" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -200,15 +201,15 @@ msgstr "විස්තරය" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "නැත" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -223,8 +224,8 @@ msgstr "නැත" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -239,11 +240,11 @@ msgstr "දත්තගබඩාවේ නික්ෂේපනය (ක්‍ර msgid "No tables found in database." msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "සියල්ල තෝරන්න" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න‍" @@ -318,12 +319,12 @@ msgstr "සීමා බාධවන් එක් කරන්න" msgid "Switch to copied database" msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙත මාරු වන්න" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Collation" @@ -346,17 +347,17 @@ msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අ #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "වගුව" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "පේළි" @@ -371,21 +372,21 @@ msgstr "භාවිතා වෙමින් පවතී" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "සෑදීම" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "අවසන් යාවත්කාලීන කිරීම" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" @@ -448,7 +449,7 @@ msgid "Del" msgstr "ඉවත්" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "හෝ" @@ -489,85 +490,87 @@ msgstr "විමසුම ඉදිරිපත් කරන්න" msgid "Access denied" msgstr "පිවිසුම වලක්වා ඇත" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "අවම වශයෙන් එක් වචනයක්වත්" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "සියලු වචන" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "හරියටම වාක්‍යාංශය" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "regular expression ලෙස" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s සඳහා සෙවීම් ප්‍රතිළුල:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%2$s වගුව තුල ගැලපීම් %1$s කි" -msgstr[1] "%2$s වගුව තුල ගැලපීම් %1$s කි" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "පිරික්සන්න" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "ඉවත් කරන්න" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "එකතුව: %s ගැලපුමයි" msgstr[1] "එකතුව: ගැලපුම් %s යි" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%2$s වගුව තුල ගැලපීම් %1$s කි" +msgstr[1] "%2$s වගුව තුල ගැලපීම් %1$s කි" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "පිරික්සන්න" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "ඉවත් කරන්න" + +#: db_search.php:362 msgid "Search in database" msgstr "දත්තගබඩාවේ සොයන්න" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "සෙවීම සඳහා වචන(ය) හෝ අගය(න්) (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "සොයන්න:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "වචන වෙන් කෙරෙන්නේ හිස් තැනකිනි(\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "වගු තුල:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "තීරය තුල:" @@ -606,8 +609,8 @@ msgstr "අවධානය අක්‍රීයයි." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 අධ්‍යනය කරන්න." @@ -616,7 +619,7 @@ msgstr "" msgid "View" msgstr "දසුන" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -626,93 +629,89 @@ msgstr "අනුරූ කරණය" msgid "Sum" msgstr "එකතුව" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s මෙම සේවාදායකයේ පෙරනිමි ගබඩා යන්ත්‍රයයි." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "තෝරාගත්:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "පිරිවැයක් සහිත වගු පරීක්ෂා කරන්න" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "අපනයනය" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "හිස් කරන්න" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "හලන්න" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "වගුව ප්‍රශස්තගත කරන්න" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "වගුවට නාම මූලයක් එක් කරන්න" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "වගු නාම මූලය ප්‍රතිස්ථාපනය කරන්න" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "දත්ත කෝෂය" @@ -725,9 +724,9 @@ msgstr "අවධානය සක්‍රීය වගු" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "දත්තගබඩාව" @@ -744,17 +743,17 @@ msgstr "සාදන ලදි" msgid "Updated" msgstr "යාවත්කාලීන කරන ලදි" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "තත්වය" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "ක්‍රියාව" @@ -787,7 +786,7 @@ msgstr "සැකිල්ලේ සැණරුව" msgid "Untracked tables" msgstr "අවධානය අක්‍රීය වගු" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "වගුව අවධානයට ලක් කරන්න" @@ -924,11 +923,11 @@ msgstr "" #: import.php:86 #, 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 බලන්න." +"ඔබ උඩුගත කරන ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්‍රම සඳහා කරුණාකර %sලියකියවිලි%" +"s බලන්න." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -997,13 +996,13 @@ msgstr "" "සීමාව වැඩි කිරීමකින් තොරව phpMyAdmin හට මෙම ආනයනය සම්පූර්ණ කිරීමට හැකි නොවන බවය." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "ආපසු" @@ -1087,8 +1086,8 @@ msgstr "මුරපදය හිස්ව පවතී!" msgid "The passwords aren't the same!" msgstr "මුරපද නොගැලපේ!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "භාවිතා කරන්නෙක් එක් කරන්න" @@ -1106,7 +1105,7 @@ msgid "Close" msgstr "වසන්න" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1133,13 +1132,13 @@ msgstr "ස්ථිතික දත්ත" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "මුළු එකතුව" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "අනෙකුත්" @@ -1169,7 +1168,7 @@ msgstr "සේවාදායකයේ තදබදය (KiB වලින්)" msgid "Connections since last refresh" msgstr "අවසන් යාවත්කාලින කිරීමේ සිට සබැඳුම්" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "ක්‍රියාවලි" @@ -1229,13 +1228,13 @@ msgstr "පද්ධතියේ swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1287,7 +1286,7 @@ msgstr "යැවුණු බයිට ගණන" msgid "Bytes received" msgstr "ලැබුණු බයිට ගණන" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "සම්බන්ධතා" @@ -1326,11 +1325,11 @@ msgstr "වගු %d" msgid "Questions" msgstr "ප්‍රශ්න" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "තදබදය" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "සිටුවම්" @@ -1353,8 +1352,8 @@ msgstr "කරුණාකර ශ්‍රේණියට අවම වශයෙ #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "කිසිවක් නැත" @@ -1454,7 +1453,7 @@ msgstr "සිටුවම් වෙනස් කිරීම" msgid "Current settings" msgstr "වර්තමාන සිටුවම්" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "ප්‍රස්තාර මාතෘකාව" @@ -1532,7 +1531,7 @@ msgstr "ප්‍රතිදානය පහදන්න" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "කාලය" @@ -1625,10 +1624,10 @@ msgid "" msgstr "" "අනයනිත වින්‍යාස සමඟින් ප්‍රස්ථාර ජාලය ගොඩනැගීම අසමත් විය. පෙරනිමි වින්‍යාස වෙත මාරු වෙමින්..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "ආනයනය" @@ -1676,9 +1675,9 @@ msgstr "භාවිතා කරන ලද විචල්‍යයන් / ස msgid "Test" msgstr "ඇගයීම" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "අවලංගු කරන්න" @@ -1708,9 +1707,9 @@ msgstr "තීරුව හලමින්" msgid "Adding Primary Key" msgstr "ප්‍රාථමික මූලය එක් කරමින්" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1786,7 +1785,7 @@ msgstr "ඉවත් කෙරෙමින්" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "සුරැකි ශ්‍රිතයක නිර්වචනයෙහි RETURN ප්‍රකාශයක් තිබිය යුතුයි!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET සංස්කාරකය" @@ -1825,8 +1824,8 @@ msgstr "විමසුම් කවුළුව පෙන්වන්න" msgid "No rows selected" msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "වෙනස් කරන්න" @@ -1841,7 +1840,7 @@ msgid "%d is not valid row number." msgstr "%d වලංගු පේළි අංකයක් නොවේ." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -1871,11 +1870,11 @@ msgstr "ලක්ෂ්‍යයක් මතින් ගමන් කරන #: js/messages.php:304 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "" +msgstr "තුළු සූමකරණය සඳහා ප්‍රස්ථාරයේ කොටසක් මූසිකය ආධාරයෙන් තෝරන්න." #: js/messages.php:306 msgid "Click reset zoom button to come back to original state." -msgstr "" +msgstr "පෙර තත්ත්වයට පැමිණීම සඳහා සූමකරණය ප්‍රතිසකසන බොත්තම ක්ලික් කරන්න." #: js/messages.php:308 msgid "Click a data point to view and possibly edit the data row." @@ -2322,34 +2321,33 @@ msgstr "'%s' රීතිය සඳහා පෙළ සැකසීම අසම #, php-format msgid "" "Invalid rule declaration on line %1$s, expected line %2$s of previous rule" -msgstr "" +msgstr "%1$s පේළියේ වැරදි රීති අර්ථ දැක්වීමකි, පෙර රීතියේ %2$s වන පේළිය බලාපොරොත්තු විය" #: libraries/Advisor.class.php:378 -#, fuzzy, php-format -#| msgid "Invalid format of CSV input on line %d." +#, php-format msgid "Invalid rule declaration on line %s" -msgstr "CSV ආනයනයේ %d පේළියේ වැරදි ආකෘතියක්." +msgstr "%s වන පේළියේ වැරදි රීති අර්ථදැක්වීමකි" #: libraries/Advisor.class.php:386 #, php-format msgid "Unexpected characters on line %s" -msgstr "" +msgstr "%s වන පේළියේ අනපේක්ෂිත අනුලකුණකි" #: libraries/Advisor.class.php:400 #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" -msgstr "" +msgstr "%1$s වන පේළියේ අනපේක්ෂිත අනුලකුණකි. ටැබයක් අපේක්ෂිත නමුත් \"%2$s\" හමුවිය" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "තප්පරයකට" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "මිනිත්තුවකට" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "පැයකට" @@ -2427,8 +2425,7 @@ msgid "vertical" msgstr "සිරස්" #: libraries/DisplayResults.class.php:702 -#, fuzzy, php-format -#| msgid "Headers every %s rows" +#, php-format msgid "Headers every %s rows" msgstr "ශීර්ෂක, පේළි %s කට වරක්" @@ -2449,8 +2446,8 @@ msgstr "යතුර අනුව තෝරන්න" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "විකල්ප" @@ -2503,7 +2500,7 @@ msgid "The row has been deleted" msgstr "පේළිය ඉවත් කරන ලදි" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "නවතා දමන්න" @@ -2532,27 +2529,27 @@ msgstr "මුළු එකතුව" msgid "Query took %01.4f sec" msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "මුද්‍රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "ප්‍රස්තාරගත කරන්න" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "ජ්‍යාමිතික දත්ත නිරූපණය" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "සබැඳිය හමු නොවිණි" @@ -2623,55 +2620,55 @@ msgstr "මෙම ස්ථානය පසු කිරීම සඳහා ක msgid "Javascript must be enabled past this point" msgstr "මෙම ස්ථානයයෙන් පසු JavaScript සක්‍රිය කර තිබීම අවශ්‍යය" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "සුචියක් අර්ථදක්වා නැත!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "සූචියන්" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "අනන්‍ය" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "අහුරන ලද" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "ටීකාව" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "ප්‍රාථමික මූලය හලන ලදි" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "%s සූචිය හලන ලදි" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "දත්තගබඩා" @@ -2681,7 +2678,7 @@ msgstr "දත්තගබඩා" msgid "Server" msgstr "සේවාදායකය" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2694,102 +2691,102 @@ msgstr "සේවාදායකය" msgid "Structure" msgstr "සැකිල්ල" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "ඇතුල් කරන්න" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "අවධානය" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "ප්‍රේරක" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" -msgstr "" +msgstr "වගුව හිස් ය!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "දත්තගබඩාව හිස්ය!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "විමසුම" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "වරප්‍රසාද" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "නෛත්‍යක" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "සිද්ධි" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "සැලසුම්කරණය" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "භාවිතා කරන්නන්" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "සමමුහුර්ත කරන්න" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "ද්වීමය ලොගය" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "විචල්‍යනයන්" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "අක්ෂර කට්ටලය" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "පේණු" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "යන්ත්‍රයන්" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "දෝෂය" @@ -2831,63 +2828,63 @@ msgstr "මෑතදී භාවිතා කල වගු" msgid "There are no recent tables" msgstr "මෑතදී භාවිතා කල වගු කිසිවක් නොමැත" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "ගබඩා යන්ත්‍රයෙහි තත්වය පිලිබඳ වැඩිදුර තොරතුරු නැත." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "මෙම MySQL සේවාදායකයේ %s ඇත." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "මෙම MySQL සේවාදායකයේ %s අක්‍රීය කර ඇත." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "මෙම MySQL සේවාදායකයේ %s ගබඩා යන්ත්‍රය භාවිත කල නොහැක." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "වගු තත්වය සඳහා නොහඳුනන අගයක්: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "`%s` මූලාශ්‍ර දත්තගබඩාව හමු නොවිණි!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "`%s` ඉලක්කගත දත්තගබඩාව හමු නොවිණි!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "වලංගු නොවන දත්තගබඩාව" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "වලංගු නොවන වගු නම" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s වගුව %2$s ලෙසට නම වෙනස් කරන ලදි." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2896,7 +2893,7 @@ msgstr "" "අතුරුමුහුණත සඳහා තේරීම් අඩංගු ගොනුව පවිත්‍ර කිරීම අසමත් විය ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s බලන්න)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2906,22 +2903,22 @@ msgstr "" "අතුරුමුහුණත් විචල්‍යය \"%s\" සුරැකිය නොහැක. මෙම පිටුව ප්‍රතිපූර්ණයෙන් පසු සිදුකල වෙනස්කම් අහිමි වනු " "ඇත. අදාල වගුවේ සැකිල්ල වෙනස් වී ඇත්දැයි පරීක්ෂාකර බලන්න." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "ශ්‍රිතය" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "මෙහෙයවනය" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "අගය" @@ -2929,7 +2926,7 @@ msgstr "අගය" msgid "Table Search" msgstr "වගුව තුල සෙවීම" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "සංස්කරණය/ඇතුල් කරන්න" @@ -2983,10 +2980,8 @@ msgid "How to use" msgstr "භාවිතා කරන අයුරු" #: libraries/TableSearch.class.php:1160 -#, fuzzy -#| msgid "Reset" msgid "Reset zoom" -msgstr "ප්‍රතිසකසන්න" +msgstr "සූමය ප්‍රතිසකසන්න" #: libraries/Theme.class.php:169 #, php-format @@ -3066,21 +3061,21 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "කුඩා දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -3.402823466E+38 සිට -1.175494351E-38, " "0, හා 1.175494351E-38 සිට 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට " -"-2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට " -"1.7976931348623157E+308" +"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට -" +"2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට 1.7976931348623157E" +"+308" #: libraries/Types.class.php:311 msgid "" @@ -3280,28 +3275,22 @@ msgstr "ඕනෑම වර්ගයක ජ්‍යාමිතීන් එක #: libraries/Types.class.php:623 libraries/Types.class.php:973 msgctxt "numeric types" msgid "Numeric" -msgstr "" +msgstr "සංඛ්‍යාත්මක" #: libraries/Types.class.php:642 libraries/Types.class.php:976 -#, fuzzy -#| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" -msgstr "නව සූචියක් සාදන්න" +msgstr "දිනය සහ වේලාව" #: libraries/Types.class.php:651 libraries/Types.class.php:979 -#, fuzzy -#| msgid "Linestring" msgctxt "string types" msgid "String" -msgstr "රේඛාව" +msgstr "පෙළ" #: libraries/Types.class.php:672 -#, fuzzy -#| msgid "Spatial" msgctxt "spatial types" msgid "Spatial" -msgstr "ජ්‍යාමිතික" +msgstr "අවකාශීය" #: libraries/Types.class.php:707 msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647" @@ -3369,8 +3358,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/auth/config.auth.lib.php:98 #, 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 " "භාවිතා කිරීම අවශ්‍ය විය හැකිය." @@ -3392,7 +3381,7 @@ msgstr "mcrypt හි Blowfish භාවිතා කිරීම අසමත #: libraries/auth/cookie.auth.lib.php:139 msgid "Your session has expired. Please login again." -msgstr "" +msgstr "ඔබගේ සැසිය කල් ඉකුත් වී ඇත. නැවත ඇතුළු වන්න." #: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" @@ -3482,12 +3471,12 @@ msgstr "වගු" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "දත්ත" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "පිරිවැය" @@ -3596,18 +3585,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL විමසුම" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3695,7 +3684,7 @@ msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝ msgid "Click to toggle" msgstr "මාරු කිරීමට ක්ලික් කරන්න" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" @@ -3705,8 +3694,8 @@ msgstr "පරිගණකය තුළ පිරික්සන්න:" msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" @@ -3890,7 +3879,7 @@ msgstr "පෙරනිමි අගය ප්‍රතිස්ථාපනය msgid "Allow users to customize this value" msgstr "මෙම අගය වෙනස් කිරීමට භවිතා කරන්නන්ට ඉඩ දෙන්න" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4173,7 +4162,7 @@ msgid "Character set of the file" msgstr "ගොනුවේ අක්ෂර කට්ටලය" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "ආකෘතිය" @@ -4471,7 +4460,7 @@ msgstr "යාත්‍රණ රාමුව" msgid "Customize appearance of the navigation frame" msgstr "යාත්‍රණ රාමුවේ පෙනුම රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "සේවාදායකයන්" @@ -4819,10 +4808,8 @@ msgid "Minimum number of tables to display the table filter box" msgstr "වගු පෙරහන් කවුළුව පෙන්වීමට අවම වශයෙන් තිබිය යුතු වගු ගණන" #: libraries/config/messages.inc.php:281 -#, fuzzy -#| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of databases to display the database filter box" -msgstr "වගු පෙරහන් කවුළුව පෙන්වීමට අවම වශයෙන් තිබිය යුතු වගු ගණන" +msgstr "දත්තගබඩා පෙරහන් කවුළුව පෙන්වීමට අවම වශයෙන් තිබිය යුතු දත්තගබඩා ගණන" #: libraries/config/messages.inc.php:282 msgid "String that separates databases into different tree levels" @@ -5743,7 +5730,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "විමසුම ක්‍රියාත්මක කිරීමෙන් පසුව විමසුම් කවුළුව තිරය මත රඳවා ගත යුතුදැයි සඳහන් කරයි" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "විමසුම් කවුළුව රඳවාගන්න" @@ -6063,21 +6050,21 @@ msgstr "%s දිගුව සොයාගත නොහැක. කරුණා msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "තොරතුරු..." @@ -6132,8 +6119,8 @@ msgstr "වගුව සාදන්න" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "නම" @@ -6237,19 +6224,19 @@ msgstr ", @TABLE@ වගුවේ නාමයෙන් ප්‍රතිස් #| "will be kept as is." 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 "" "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." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "මතු අපනයන සඳහා භාවිතා කරන්න" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "ගොනුවේ අක්ෂර කට්ටලය:" @@ -6290,9 +6277,8 @@ msgstr "" "තෝරාගත් ආකෘතිය සඳහා විකල්ප භාවිතා කිරීමට පහලට යන්න. අනෙකුත් ආකෘති සඳහා විකල්ප නොසලකන්න." #: libraries/display_export.lib.php:357 libraries/display_import.lib.php:311 -#, fuzzy msgid "Encoding Conversion:" -msgstr "MySQL සේවාදායකයාගේ සංස්කරණය" +msgstr "කේතීකරණ පරිවර්තනය:" #: libraries/display_git_revision.lib.php:56 #, php-format @@ -6718,8 +6704,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6779,7 +6765,7 @@ msgstr "සිද්ධිය" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "අර්ථ දැක්වීම" @@ -6840,7 +6826,7 @@ msgstr "MIME වර්ග පෙන්වන්න" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "දායකයා" @@ -7052,8 +7038,8 @@ msgstr "අන්තර්ගතය අපනයනය කරන්න" msgid "No data found for GIS visualization." msgstr "ජ්‍යාමිතික නිරූපණයට දත්ත කිසිවක් හමු නොවිණි." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL හිස් ප්‍රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි." @@ -7165,10 +7151,9 @@ msgid "This plugin does not support compressed imports!" msgstr "මෙම පේණුව හැකිළු ආනයන සඳහා සහාය නොදක්වයි!" #: libraries/import/mediawiki.php:246 -#, fuzzy, php-format -#| msgid "Invalid format of CSV input on line %d." +#, php-format msgid "Invalid format of mediawiki input on line:
    %s." -msgstr "CSV ආනයනයේ %d පේළියේ වැරදි ආකෘතියක්." +msgstr "Mediawiki ආනයනයේ වැරදි ආකෘතියකි, පේළිය:
    %s." #: libraries/import/ods.php:49 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" @@ -7224,75 +7209,75 @@ msgstr "SQL ගැළපුම් ප්‍රකාරය:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "ශුන්‍ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "සඟවන්න" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "ද්වීමය" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "මෙහි දිග නිසා,
    මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "ද්වීමය - සංස්කරණය නොකරන්න" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "අනතුරුව" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "මීලඟ පේළිය සංස්කරණය කරන්න" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" @@ -7316,7 +7301,7 @@ msgid "To" msgstr "දක්වා" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "ඉදිරිපත් කරන්න" @@ -7332,7 +7317,7 @@ msgstr "නාම මූලයක් එක් කරන්න" msgid "Do you really want to execute the following query?" msgstr "පහත විමසුම ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "වෙනස්කම් නැත" @@ -7582,7 +7567,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "ඔබගේ column_comments වගුව යාවත්කාලීන කරන්නේ කෙසේද යන්න පිළිබඳව ලියකියවිලි බලන්න" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "පොත් සලකුණු කරන ලද SQL විමසුම" @@ -7629,6 +7614,10 @@ msgstr "යාවත්කාලීන කරන ලද වින්‍යාස msgid "no description" msgstr "විස්තරයක් නොමැත" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Slave සඳහා වින්‍යාසයන්" @@ -7665,8 +7654,8 @@ msgstr "Master සේවාදායකයේ තත්වය" msgid "Slave status" msgstr "Slave සේවාදායකයේ තත්වය" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "විචල්‍යය" @@ -7692,7 +7681,7 @@ msgstr "ඕනෑම භාවිතා කරන්නෙක්" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" @@ -7724,10 +7713,10 @@ msgid "Generate Password" msgstr "මුරපදය උත්පාදනය කරන්න" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7738,7 +7727,7 @@ msgstr "පහත විමසුම් අසමත් විය: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "හලන ලද සිද්ධිය ප්‍රතිස්ථාපනය කිරීම අසමත් විය." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "රක්ෂිත විමසුම වූයේ:" @@ -7753,7 +7742,7 @@ msgstr "%1$s සිද්ධිය වෙනස් කරන ලදි." msgid "Event %1$s has been created." msgstr "%1$s සිද්ධිය සාදන ලදි." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "ඔබගේ ඉල්ලීම පිරිසකසන අතරතුර දෝෂ එකක් හෝ වැඩි ගණනක් ඇති විය:" @@ -7762,14 +7751,14 @@ msgstr "ඔබගේ ඉල්ලීම පිරිසකසන අතරත msgid "Edit event" msgstr "සිද්ධිය සංස්කරණය කරන්න" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "තොරතුරු" @@ -7782,7 +7771,7 @@ msgstr "සිද්ධියේ නම" msgid "Event type" msgstr "සිද්ධි වර්ගය" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "%s ලෙස වෙනස් කරන්න" @@ -7809,13 +7798,13 @@ msgstr "නවතන්න" msgid "On completion preserve" msgstr "සමාප්තියේදී සුරකින්න" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "අර්ථ දක්වන්නා" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "අර්ථ දක්වන්නා \"භාවිත නාමය@සේවාදායක නාමය\" ආකෘතියේ විය යුතුය" @@ -7840,7 +7829,7 @@ msgstr "ඔබ සිද්ධිය සඳහා වලංගු වර්ග msgid "You must provide an event definition." msgstr "ඔබ සිද්ධි අර්ථ දැක්වීමක් ලබාදිය යුතුයි." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "නව" @@ -7860,7 +7849,7 @@ msgstr "සිද්ධි නියමකාරනියේ තත්වය" msgid "Returns" msgstr "ප්‍රතිදානය" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7868,89 +7857,89 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "වලංගු නැති නෛත්‍යක වර්ගය: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "හලන ලද නෛත්‍යකය ප්‍රතිස්ථාපනය කිරීම අසමත් විය." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "%1$s නෛත්‍යකය වෙනස් කරන ලදී." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "%1$s නෛත්‍යකය සාදන ලදි." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "නෛත්‍යකය සංස්කරණ කරන්න" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "නෛත්‍යකයේ නම" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "පරාමිතියන්" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "දිශාව" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "දිග/අගයන්" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "පරාමිතය එක් කරන්න" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "අවසන් පරාමිතය ඉවත් කරන්න" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "ප්‍රතිදාන වර්ගය" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "ප්‍රතිදානයේ දිග/අගයන්" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "ප්‍රතිදාන විකල්ප" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "නිර්ණයනය කල හැකිද යන වග" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "ආරක්ෂණ වර්ගය" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL දත්ත පරිශීලනය" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "ඔබ නෛත්යකය සඳහා නමක් ලබාදිය යුතුයි" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "පරාමිතිය සඳහා සපයන ලද \"%s\", දිශාව සඳහා වැරදි අගයකි." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7958,37 +7947,37 @@ msgstr "" "ENUM, SET, VARCHAR සහ VARBINARY වර්ගවල නෛත්‍යක පරාමිති සඳහා ඔබ ප්‍රමාණය/අගයන් ලබා දිය " "යුතුය." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "සෑම නෛත්‍යක පරාමිතියක් සඳහාම ඔබ නමක් සහ වර්ගයක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "නෛත්‍යකය සඳහා ඔබ වලංගු ප්‍රතිදාන වර්ගයක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "ඔබ නෛත්‍යක අර්ථදක්වීමක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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 කට බලපෑවේ ය" msgstr[1] "කාර්ය පටිපාටියේ අවසන් ප්‍රකාශය ක්‍රියාත්මක කිරීමෙන් පේළි %d කට බලපෑවේ ය" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "%s නෛත්‍යකයේ ප්‍රතිදානය" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "නෛත්‍යකය ක්‍රියාත්මක කරන්න" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "නෛත්‍යක පරාමිති" @@ -8269,7 +8258,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "%1$s නොදන්නා භාෂාවකි." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "වත්මන් සේවාදායකය" @@ -8300,50 +8289,50 @@ msgstr "ඉලක්කගත දත්තගබඩාව" msgid "Click to select" msgstr "තේරීමට ක්ලික් කරන්න" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "SQL විමසුමක් සිදු කරන්න/%s සේවාදායකය මත විමසුම්" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "මකන්න" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "තීර" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "එකම නම ඇති පොත් සලකුණ ප්‍රතිස්ථාපනය කරන්න" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "පරිසීමකය" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "දර්ශනය කිරීම පමණි" @@ -8436,15 +8425,13 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "සූචිය" #: libraries/tbl_properties.inc.php:121 -#, fuzzy -#| msgid "Remove column(s)" msgid "Move column" -msgstr "පේළි(යක්) ඉවත් කරන්න" +msgstr "පේළිය ගෙනයන්න" #: libraries/tbl_properties.inc.php:130 #, php-format @@ -8483,12 +8470,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "ප්‍රාථමික" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "සම්පූර්ණ පාඨය" @@ -8497,17 +8484,16 @@ msgid "first" msgstr "" #: libraries/tbl_properties.inc.php:599 -#, fuzzy, php-format -#| msgid "After %s" +#, php-format msgid "after %s" msgstr "%s ට පසු" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "%s ක්ෂේත්‍ර(ය) එක් කරන්න" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් එක් කල යුතුයි." @@ -8557,7 +8543,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "මෙම පින්තුරය බාගත කිරීම සඳහා සබැඳියක් පෙන්වයි." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8670,8 +8656,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:122 msgid "Could not save configuration" @@ -8726,8 +8712,8 @@ msgid "Protocol version" msgstr "ප්‍රෝටකෝල අනුවාදය" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "භාවිතා කරන්නා" @@ -8842,17 +8828,15 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "දත්තගබඩා නොමැත" -#: navigation.php:170 -#, fuzzy -#| msgid "Filter tables by name" +#: navigation.php:169 msgid "Filter databases by name" -msgstr "වගු නමින් පෙරහන්න" +msgstr "දත්තගබඩා නමින් පෙරහන්න" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "වගු නමින් පෙරහන්න" @@ -8873,7 +8857,7 @@ msgstr "වම් මෙනුව පෙන්වන්න/සඟවන්න" msgid "Save position" msgstr "ස්ථාපිතය සුරකින්න" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "සම්බන්දතාවයක් සාදන්න" @@ -8933,38 +8917,38 @@ msgstr "" msgid "Number of tables" msgstr "වගු ගණන" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Relation view" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "හැර" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "උප විමසුම" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "නව නාමය" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "නව නාමය" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "එකතු කරන්න" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "සක්‍රිය විකල්ප" @@ -9126,13 +9110,13 @@ msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය ත msgid "Files" msgstr "ගොනු" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" @@ -9148,7 +9132,7 @@ msgstr "පිහිටුම" msgid "Original position" msgstr "මුල් පිහිටුම" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "තොරතුරු" @@ -9176,11 +9160,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "සංඛ්‍යා ලේඛන සක්‍රිය කරන්න" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9420,7 +9404,7 @@ msgid "None" msgstr "කිසිවක් නැත" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "වගු-විශේෂී වරප්‍රසාද" @@ -9437,7 +9421,7 @@ msgstr "පරිපාලනය" msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" @@ -9457,7 +9441,7 @@ msgstr "ලොගින තොරතුරු" msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "භාවිතා කරන්නන් හමු නොවිණි." @@ -9506,7 +9490,7 @@ msgstr "තෝරාගත් භාවිතා කරන්නන් සාර msgid "The privileges were reloaded successfully." msgstr "සාර්ථකව වරප්‍රසාද පූරණය කරන්න ලදි." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න" @@ -9519,7 +9503,7 @@ msgid "Export all" msgstr "සියල්ල අපනයනය කරන්න" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "ඕනෑම" @@ -9536,118 +9520,118 @@ msgstr "%s සඳහා වරප්‍රසාද" msgid "Users overview" msgstr "භාවිතා කරන්නන් පිළිබඳ දළ විශ්ලේෂණය" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "භාවිතා කරන්නන්ගේ සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 කල යුතුය." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "තීර-විශේෂී වරප්‍රසාද" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... පැරණි එක තබා ගන්න." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... පැරැන්නෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" දත්තගබඩාව සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr ""%s" වෙත ප්‍රවේශ වරප්‍රසාද ඇති භාවිතා කරන්නන්" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "ගෝලීය" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "භාවිතා කරන්නා එක් කරන ලදි." @@ -9922,23 +9906,23 @@ msgstr "අනතුරුදායක අගයන් පමණක් පෙන msgid "Filter by category..." msgstr "වර්ගය මත පෙරන්න..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "ආකෘතික අගයන් පෙන්වන්න" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "අදාල සබැඳි:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "විශ්ලේශකය ක්‍රියාත්මක කරවන්න" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "උපදෙස්" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -9946,7 +9930,7 @@ msgstr "" "සේවාදායක තත්ත්ව විචල්‍යයන් අධ්‍යයනය කිරීමෙන් සේවාදායක විචල්‍යයන්ට අදාල නිර්දේශ ලබා දීමට උපදේශක " "පද්ධතියට හැකිය." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -9955,7 +9939,7 @@ msgstr "" "කෙසේ වෙතත් මෙම නිර්දේශ ලබා දෙනුයේ සරල ගණනය කිරීම් හා ආනුභූතික රීති පදනම් කරගෙන බවත් එම නිසා " "එවැනි නිර්දේශ ඔබගේ පද්ධතියට අදාල නොවීමට ඉඩ ඇති බවත් සලකන්න." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -9965,7 +9949,7 @@ msgstr "" "වෙනස්කම් ප්‍රතිවර්තනය කරන්නේ කෙසේද යන්න දැනගන්න. වැරදි සුසර කිරීම් මඟින් පද්ධතියේ කාර්යසාධනය " "තවදුරටත් නරක විය හැකිය." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9976,31 +9960,31 @@ msgstr "" "කිරීම් ප්‍රතිවර්තනය කිරීමත් ය." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "ආරම්භයේ සිට සේවාදායකය වෙත යැවුණු ප්‍රශ්න ගණන: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "ප්‍රකාශය" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "ආරම්භයේ සිට ජාලය හරහා ගමන් ගත් දත්ත ප්‍රමාණය: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "මෙම MySQL සේවාදායකය %1$s තිස්සේ ක්‍රියාත්මකයි. මෙය ඇරඹුයේ %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10008,15 +9992,15 @@ msgstr "" "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master හා slave " "ලෙස ක්‍රියාකරයි." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master ලෙස ක්‍රියාකරයි." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී slave ලෙස ක්‍රියාකරයි." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10024,71 +10008,71 @@ msgstr "" "සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "අනුරූ කරණයේ තත්වය" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "ලබන ලද" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "යවන ලද" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "අසාර්ථක උත්සාහයන්" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "හැඳුනුම් අංකය" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "විධානය" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL සේවාදායකය හා සම්බන්ද වීමට ගත් අසාර්ථක උත්සාහ ගණන." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10096,78 +10080,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10175,7 +10159,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10183,42 +10167,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "අභ්‍යන්තරව සිදු කෙරුණු ROLLBACK ප්‍රකාශ ගණන." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්‍ර හෝ පවිත්‍ර)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "දැනට අපවිත්‍රව ඇති පිටු ගණන." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "නිදහස් පිටු ගණන." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10226,33 +10210,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10261,251 +10245,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "මුළු දත්ත කියැවුම් ගණන." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "මුළු දත්ත ලියැවුම් ගණන." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "මේ දක්වා ලියැවුණු දත්ත ප්‍රමාණය, බයිට වලින්." -#: server_status.php:1364 -#, fuzzy -msgid "The number of pages that have been written for doublewrite operations." -msgstr "" -"The number of doublewrite writes that have been performed and the number of " -"pages that have been written for this purpose." - #: server_status.php:1365 -#, fuzzy -msgid "The number of doublewrite operations that have been performed." -msgstr "" -"The number of doublewrite writes that have been performed and the number of " -"pages that have been written for this purpose." +msgid "The number of pages that have been written for doublewrite operations." +msgstr "ද්විත්ව-ලිවීම් මෙහෙයුම් සඳහා ලියැවුණු පිටු ගණන." #: server_status.php:1366 +msgid "The number of doublewrite operations that have been performed." +msgstr "සිදු කෙරුණු ද්විත්ව-ලිවීම් මෙහෙයුම් ගණන." + +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "ලොග බෆරය කුඩා වීම නිසා ඉදිරියට යාමට පෙර එය හිස් කෙරෙන තුරු බලා සිටීමට සිදු වූ වාර ගණන." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "සාදන ලද පිටු ගණන." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "කියවන ලද පිටු ගණන." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "ලියන ලද පිටු ගණන." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්‍යන්‍ය කාලය, මිලිතත්පර වලින්." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 -#, fuzzy -#| msgid "Format of imported file" -msgid "Percentage of used key cache (calculated value)" -msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය" - #: server_status.php:1390 +msgid "Percentage of used key cache (calculated value)" +msgstr "යතුරු කෑෂයේ භාවිතා කරන ලද ප්‍රතිශතය (ගණනය කරන ලද අගයකි)" + +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10513,99 +10489,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10613,18 +10589,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10632,49 +10608,49 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "අවධානය අක්‍රීයයි." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "අධීක්ෂණය අරඹන්න" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "උපදෙස්/පිහිටුවීම" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "ප්‍රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "ප්‍රස්ථාර එක් කරන්න" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "ප්‍රස්ථාර වෙනස් කිරීම/අනුපිලිවෙල සකස් කිරීම" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "ප්‍රස්ථාරයේ තීර" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "ප්‍රස්ථාර සැකසුම" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -10682,15 +10658,15 @@ msgstr "" "ප්‍රස්ථාර සැකැස්ම බ්‍රවුසරයේ ගබඩාවේ ගබඩා කර ඇත. සංකීර්ණ වූ සැකැස්මක් ඇත්නම් ඔබට එය අපනයනය " "කර ගැනීමට අවශ්‍ය විය හැකිය." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "පෙරනිමි අගයන් පිහිටුවන්න" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "අධීක්ෂකය පිලිබඳ උපදෙස්" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10704,7 +10680,7 @@ msgstr "" "general_log ය ඉතා විශාල දත්ත ප්‍රමාණයක් උත්පාදනය කරන බව සහ එමගින් සේවාදායකය මත භාරය " "15% දක්වා ඉහල යා හැකි බව සලකන්න" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10716,11 +10692,11 @@ msgstr "" "MySQL 5.1.6 හෝ පසු අනුවාදයක සිදු කල හැක. කෙසේ නමුත් ඔබට සේවාදායකයේ ප්‍රස්ථාර විශේෂාංග " "භාවිතා කල හැක." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "අධීක්ෂකය භාවිතා කිරීම:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -10730,7 +10706,7 @@ msgstr "" "ප්‍රස්ථාර එකතු කිරීම, 'සිටුවම්' භාවිතා කරමින් යාවත්කාලීන කරන වේගය වෙනස් කිරීම හෝ අදාල ප්‍රස්ථාරය " "මත ඇති අයිකනය භාවිතා කර ඕනෑම ප්‍රස්ථාරයක් ඉවත් කිරීම සිදු කල හැක." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10742,11 +10718,11 @@ msgstr "" "පූරණය කෙරෙනු ඇත. එහි ඇතුලත් ඕනෑම SELECT ප්‍රකාශයක් ක්ලික් කිරීමෙන් එය තවදුරටත් විශ්ලේෂණය කල " "හැක." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "කරුණාවෙන් සලකන්න:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10758,86 +10734,86 @@ msgstr "" "මේ සඳහා කුඩා කාල පරාසයක් තෝරා ගැනීමද අධීක්ෂණය තවදුරටත් අවශ්‍ය නොවන විට general_log " "අක්‍රීය කිරීම හා ඊට අයත් වගුව හිස් කිරීම ද නිර්දේශිතය." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "පෙරසැදි ප්‍රස්ථාර" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "තත්ව විචල්‍ය(ය)" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "ශ්‍රේණිය තෝරන්න:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "සාමාන්‍යයෙන් අධීක්ෂණය කරනු ලබන" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "හෝ විචල්‍ය නාමය යතුරු කරන්න:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "ආන්තර අගයන් ලෙස පෙන්වන්න" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "භාජකයක් භාවිතා කරන්න" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "දත්ත අගයන් සඳහා ඒකකයක් එක් කරන්න" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "මෙම ශ්‍රේණිය එක් කරන්න" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "ශ්‍රේණිය ඉවත් කරන්න" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "ප්‍රස්ථාරයේ ශ්‍රේණි:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "ලොග සංඛ්‍යලේඛන" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "තෝරාගත් කාල පරාසය:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "SELECT,INSERT,UPDATE සහ DELETE ප්‍රකාශ පමණක් ලබාගන්න" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "වඩා හොඳ සමූහනයන් සඳහා INSERT ප්‍රකාශ වල අඩංගු විචල්‍ය දත්ත ඉවත් කරන්න" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "සංඛ්‍යාලේඛන උත්පාදනය කල යුත්තේ කුමන ලොගයෙන් දැයි තෝරන්න." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "ප්‍රතිඵල විමසුම් පෙළ මගින් සමූහනය කර ඇත." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "විමසුම් විශ්ලේශකය" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "තත්පර %dක්" msgstr[1] "තත්පර %dක්" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11303,10 +11279,8 @@ msgid "Table %1$s has been altered successfully" msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි" #: tbl_alter.php:131 -#, fuzzy -#| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." -msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." +msgstr "තීර සාර්ථකව ගෙන යන ලදි." #: tbl_chart.php:83 msgctxt "Chart type" @@ -11575,35 +11549,35 @@ msgstr "" msgid "Showing tables" msgstr "වගු පෙන්වමින්" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "අවකාශ භාවිතය" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "එලදායී" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "ස්ථිතික" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "ගතික" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "පේළියේ දිග" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "පේළියේ ප්‍රමාණය" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "මීළඟ ක්‍රමාංකය" @@ -11626,7 +11600,7 @@ msgstr "අදාල අන්‍ය මූලය ඇති විට අභ් msgid "Foreign key constraint" msgstr "අන්‍ය මූල නිරෝධය" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "ජ්‍යාමිතික" @@ -11676,49 +11650,49 @@ msgstr "%s සඳහා සූචියක් එක්කරන ලදි" msgid "Show more actions" msgstr "තවත් ක්‍රියාවන් පෙන්වන්න" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "තීර අනුපිළිවල සකසන්න" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "ඉහළ පහළ ඇදීමෙන් තීර අනුපිළිවෙල සකසන්න." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "දසුන සංස්කරණය කරන්න" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "වගු සබඳතා දර්ශනය" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "සැකිල්ලක් යෝජනා කරන්න" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "තීරයක් එක් කරන්න" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "වගුව අවසනදී" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "වගුව මුලදී" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s ට පසු" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "පේළි %s මත සුචියක් සාදන්න" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "කොටස් කරන ලද" @@ -11924,10 +11898,8 @@ msgid "The uptime is only %s" msgstr "" #: libraries/advisory_rules.txt:56 -#, fuzzy -#| msgid "Versions" msgid "Questions below 1,000" -msgstr "අනුවාද" +msgstr "ප්‍රශ්න ගණන 1,000 ට වඩා අඩුය" #: libraries/advisory_rules.txt:59 msgid "" @@ -11942,10 +11914,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:61 -#, fuzzy, php-format -#| msgid "Current connection" +#, php-format msgid "Current amount of Questions: %s" -msgstr "වත්මන් සම්බන්දතාව" +msgstr "වත්මන් ප්‍රශ්න ගණන: %s" #: libraries/advisory_rules.txt:63 msgid "Percentage of slow queries" @@ -12000,8 +11971,7 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:82 -#, fuzzy, php-format -#| msgid "long_query_time is set to %d second(s)." +#, php-format msgid "long_query_time is currently set to %ds." msgstr "long_query_time තත්පර %d කට සිටුවා ඇත." @@ -12010,10 +11980,8 @@ msgid "Slow query logging" msgstr "මන්දගාමී විමසුම් ලොගගත කිරීම" #: libraries/advisory_rules.txt:87 -#, fuzzy -#| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." -msgstr "slow_query_log සක්‍රීය යි." +msgstr "වැඩි කාලයක් ගන්න විමසුම් සටහන් කරනා ලොගය අක්‍රීය යි." #: libraries/advisory_rules.txt:88 msgid "" @@ -12022,10 +11990,8 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:89 -#, fuzzy -#| msgid "long_query_time is set to %d second(s)." msgid "log_slow_queries is set to 'OFF'" -msgstr "long_query_time තත්පර %d කට සිටුවා ඇත." +msgstr "log_slow_queries, 'OFF'(අක්‍රීය) වෙත පිහිටුවා ඇත" #: libraries/advisory_rules.txt:93 #, fuzzy @@ -12068,10 +12034,8 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" #: libraries/advisory_rules.txt:111 -#, fuzzy -#| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" -msgstr "You should upgrade to %s %s or later." +msgstr "ඔබ MySQL 5.5 හි ස්ථාවර අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය" #: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 #: libraries/advisory_rules.txt:128 @@ -12115,10 +12079,8 @@ msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" #: libraries/advisory_rules.txt:135 -#, fuzzy -#| msgid "MySQL charset" msgid "MySQL Architecture" -msgstr "MySQL අක්ෂර කට්ටලය" +msgstr "MySQL නිර්මිතය" #: libraries/advisory_rules.txt:138 msgid "MySQL is not compiled as a 64-bit package." @@ -12161,10 +12123,8 @@ msgid "Query caching method" msgstr "විමසුම් කෑෂ්ගත කරන ක්‍රමය" #: libraries/advisory_rules.txt:156 -#, fuzzy -#| msgid "Query caching method" msgid "Suboptimal caching method." -msgstr "විමසුම් කෑෂ්ගත කරන ක්‍රමය" +msgstr "කෑෂ්ගත කරන ක්‍රමය ප්‍රශස්ත නැත." #: libraries/advisory_rules.txt:157 msgid "" @@ -12218,8 +12178,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12297,10 +12257,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:193 -#, fuzzy, php-format -#| msgid "Current version: %s" +#, php-format msgid "Current query cache size: %s" -msgstr "වත්මන් අනුවාදය: %s" +msgstr "වත්මන් විමසුම් කෑෂයේ ප්‍රමාණය: %s" #: libraries/advisory_rules.txt:195 msgid "Query cache min result size" @@ -12348,8 +12307,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/sk.po b/po/sk.po index e895b52e4a..8ff58729de 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 14:52+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "nadradené okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu " "bezpečnostných nastavení." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Hľadať" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Vykonaj" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Kľúčový názov" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Popis" @@ -117,13 +118,13 @@ msgstr "Komentár k databáze: " msgid "Table comments" msgstr "Komentár k tabuľke" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Komentár k tabuľke" msgid "Column" msgstr "Stĺpec" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Linkovať na" msgid "Comments" msgstr "Komentáre" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Komentáre" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nie" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Nie" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Zobraziť dump (schému) databázy" msgid "No tables found in database." msgstr "Neboli nájdené žiadne tabuľky v tejto databáze." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Označiť všetko" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Odznačiť všetko" @@ -323,12 +324,12 @@ msgstr "Pridať obmedzenia" msgid "Switch to copied database" msgstr "Prepnúť na skopírovanú databázu" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Zotriedenie" @@ -351,17 +352,17 @@ msgstr "Upraviť alebo exportovať relačnú schému" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabuľka" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Riadkov" @@ -376,21 +377,21 @@ msgstr "práve sa používa" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Vytvorenie" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Posledná zmena" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Posledná kontrola" @@ -454,7 +455,7 @@ msgid "Del" msgstr "Zmazať" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Alebo" @@ -495,61 +496,28 @@ msgstr "Odošli dopyt" msgid "Access denied" msgstr "Prístup odmietnutý" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "najmenej jedno zo slov" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "všetky slová" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "presný výraz" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "ako regulárny výraz" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Prehľadať výsledky na \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s výskyt v tabuľke %s" -msgstr[1] "%s výskyty v tabuľke %s" -msgstr[2] "%s výskytov v tabuľke %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Prechádzať" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Odstrániť nájdené záznamy z tabuľky %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Zmazať" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -557,27 +525,60 @@ msgstr[0] "Celkovo: %s výskyt" msgstr[1] "Celkovo: %s výskyty" msgstr[2] "Celkovo: %s výskytov" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s výskyt v tabuľke %s" +msgstr[1] "%s výskyty v tabuľke %s" +msgstr[2] "%s výskytov v tabuľke %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Prechádzať" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Odstrániť nájdené záznamy z tabuľky %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Zmazať" + +#: db_search.php:362 msgid "Search in database" msgstr "Hľadať v databáze" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Slová alebo hodnoty, ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Nájdi:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Slová sú rozdelené medzerou (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "V tabuľkách:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "V tabuľke:" @@ -616,8 +617,8 @@ msgstr "Sledovanie nie je aktívne." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." @@ -626,7 +627,7 @@ msgstr "" msgid "View" msgstr "Pohľad" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -636,93 +637,89 @@ msgstr "Replikácia" msgid "Sum" msgstr "Celkom" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Na tomto MySQL serveri je prednastaveným úložným systémom %s." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Výber:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Označiť všetko" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Odznačiť všetko" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportovať" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Vyprázdniť" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Odstrániť" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Skontrolovať tabuľku" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimalizovať tabuľku" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Opraviť tabuľku" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyzovať tabuľku" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Pridať predponu k tabuľke" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Nahradiť predponu tabuľky" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Skopírovať tabuľku s predponou" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dátový slovník" @@ -735,9 +732,9 @@ msgstr "Sledované tabuľky" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databáza" @@ -754,17 +751,17 @@ msgstr "Vytvorené" msgid "Updated" msgstr "Aktualizované" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Stav" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Akcia" @@ -796,7 +793,7 @@ msgstr "Snímok štruktúry" msgid "Untracked tables" msgstr "Nesledované tabuľky" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Sledovať tabuľku" @@ -933,8 +930,8 @@ msgstr "" #: import.php:86 #, 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 "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." @@ -1011,13 +1008,13 @@ msgstr "" "časový limit behu skriptu v php." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL dopyt bol úspešne vykonaný" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Späť" @@ -1103,8 +1100,8 @@ msgstr "Heslo je prázdne!" msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Pridať používateľa" @@ -1122,7 +1119,7 @@ msgid "Close" msgstr "Zavrieť" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1149,13 +1146,13 @@ msgstr "Statické data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Celkom" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Ostatné" @@ -1185,7 +1182,7 @@ msgstr "Sieťová prevádzka (v KiB)" msgid "Connections since last refresh" msgstr "Spojení od posledného obnovenia" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesy" @@ -1248,13 +1245,13 @@ msgstr "Stránkovacia oblasť" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1306,7 +1303,7 @@ msgstr "Odoslaných bajtov" msgid "Bytes received" msgstr "Prijatých bajtov" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Spojenia" @@ -1345,11 +1342,11 @@ msgstr "%d tabuliek" msgid "Questions" msgstr "Dopyty" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Vyťaženie" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Nastavenia" @@ -1372,8 +1369,8 @@ msgstr "Pridajte prosím aspoň jednu hodnotu do série" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Žiadny" @@ -1473,7 +1470,7 @@ msgstr "Zmeniť nastavenia" msgid "Current settings" msgstr "Aktuálne nastavenia" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Názov grafu" @@ -1564,7 +1561,7 @@ msgstr "Vysvetliť výstup" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Čas" @@ -1662,10 +1659,10 @@ msgstr "" "Nepodarilo sa vytvoriť graf z importovanej konfigurácie. Používam východzie " "nastavenia..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1717,9 +1714,9 @@ msgstr "Použitá premenná / vzorec" msgid "Test" msgstr "Kontrola" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Zrušiť" @@ -1747,9 +1744,9 @@ msgstr "Odstraňujem stĺpce" msgid "Adding Primary Key" msgstr "Pridavam primarny kľúč" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1831,7 +1828,7 @@ msgstr "Odstraňujem" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definícia uloženej funkcie musí obsahovať príkaz RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Upraviť ENUM/SET" @@ -1871,8 +1868,8 @@ msgstr "Zobrazit vyhľadávacie pole" msgid "No rows selected" msgstr "Nebol vybraný žiadny riadok" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Zmeniť" @@ -1887,7 +1884,7 @@ msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2387,16 +2384,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "za sekundu" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "za minútu" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "za hodinu" @@ -2500,8 +2497,8 @@ msgstr "Zoradiť podľa kľúča" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Nastavenia" @@ -2557,7 +2554,7 @@ msgid "The row has been deleted" msgstr "Riadok bol zmazaný" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Zabiť" @@ -2586,27 +2583,27 @@ msgstr "celkovo" msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f s" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Zobraziť graf" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Zobraziť GIS data" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Vytvoriť pohľad" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Linka nebola nájdená" @@ -2683,46 +2680,46 @@ msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." msgid "Javascript must be enabled past this point" msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Nebol definovaný žiadny index!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexy" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikátny" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Zabalené" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Mohutnosť" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentár" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primárny kľúč bol zrušený" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Index pre %s bol odstránený" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2731,9 +2728,9 @@ msgstr "" "Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne " "odstránený." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Databázy" @@ -2743,7 +2740,7 @@ msgstr "Databázy" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2756,104 +2753,104 @@ msgstr "Server" msgid "Structure" msgstr "Štruktúra" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Vložiť" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operácie" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Sledovanie" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Spúšťače" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabuľka vyzerá prázdna!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Databáza vyzerá prázdna!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Dopyt podľa príkladu" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Oprávnenia" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Udalosti" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dizajnér" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Používateľ" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchronizovať" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binárny log" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Premenné" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Systémy" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Chyba" @@ -2898,74 +2895,74 @@ msgstr "Nedávne tabuľky" msgid "There are no recent tables" msgstr "Neboli nájdené žiadne nedávne tabuľky" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Pre tento úložný systém nie sú dostupné žiadne podrobnejšie informácie." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je dostupný na tomto MySQL serveri." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s bol zakázaný na tomto MySQL serveri." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Tento MySQL server nepodporuje úložný systém %s." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "neznámy stav tabuľky: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Zdrojová databáza" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Vzhľad %s nebol nájdený!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Chybná databáza" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Chybné meno tabuľky" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabuľka %s bola premenovaná na %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Nepodarilo sa uložiť nastavenia tabuľky" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2973,22 +2970,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkcia" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operátor" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Hodnota" @@ -2998,7 +2995,7 @@ msgstr "Hodnota" msgid "Table Search" msgstr "Hľadať" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3136,14 +3133,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3403,8 +3400,8 @@ msgstr "Vitajte v %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." @@ -3517,12 +3514,12 @@ msgstr "Tabuľky" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Dáta" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Naviac" @@ -3637,18 +3634,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL dopyt" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3736,7 +3733,7 @@ msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" msgid "Click to toggle" msgstr "Kliknite pre prepnutie" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" @@ -3746,8 +3743,8 @@ msgstr "Prechádzať váš počítač:" msgid "Select from the web server upload directory %s:" msgstr "Zvoľte súbor z upload adresára %s web servera:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" @@ -3931,7 +3928,7 @@ msgstr "Obnoviť východziu hodnotu" msgid "Allow users to customize this value" msgstr "Povoliť užívateľom prispôsobiť túto hodnotu" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4222,7 +4219,7 @@ msgid "Character set of the file" msgstr "Znaková sada súboru" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formát" @@ -4520,7 +4517,7 @@ msgstr "Navigačný rám" msgid "Customize appearance of the navigation frame" msgstr "Prizpôsobiť vzhľad navigačného rámu" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servery" @@ -5871,7 +5868,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6200,7 +6197,7 @@ msgstr "Chýba rozšírenie %s. Skontrolujte prosín nastavenia PHP." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6208,15 +6205,15 @@ msgstr "" "Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne " "nastavený)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Server neodpovedá." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Podrobnosti..." @@ -6271,8 +6268,8 @@ msgstr "Vytvoriť tabuľku" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Názov" @@ -6373,8 +6370,8 @@ msgstr ", meno tabuľky bude zmenené na @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 "" "Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť " "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " @@ -6386,7 +6383,7 @@ msgid "use this for future exports" msgstr "použiť aj pre budúce exporty" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Znaková sada súboru:" @@ -6887,8 +6884,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6949,7 +6946,7 @@ msgstr "Udalosť" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7013,7 +7010,7 @@ msgstr "Zobraziť MIME typy" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Hostiteľ" @@ -7213,8 +7210,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Neboli nájdené žiadne dáta pre graf." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." @@ -7382,78 +7379,78 @@ msgstr "Režim kompatibility SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Skryť" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binárny" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Kvôli dĺžke poľa,
    toto pole sa nemusí dať upraviť" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binárny - neupravujte" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "upload adresár web serveru" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "a potom" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 #, fuzzy msgid "Show insert query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Späť" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými " "smermi klávesy CTRL+šípky" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7477,7 +7474,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Odošli" @@ -7496,7 +7493,7 @@ msgstr "Odstrániť index/indexy" msgid "Do you really want to execute the following query?" msgstr "Skutočne chcete vykonať príkaz " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Žiadna zmena" @@ -7750,7 +7747,7 @@ msgstr "" "Prosím prečítajte si dokumentáciu ako aktualizovať tabuľku s informáciami o " "stĺpcoch (column_comments tabuľka)" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Obľúbený SQL dopyt" @@ -7799,6 +7796,10 @@ msgstr "" msgid "no description" msgstr "bez Popisu" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Odznačiť všetko" + #: libraries/replication_gui.lib.php:54 #, fuzzy msgid "Slave configuration" @@ -7836,8 +7837,8 @@ msgstr "Zobraziť stav master replikácie" msgid "Slave status" msgstr "Zobraziť stav podriadených hostov" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Premenná" @@ -7862,7 +7863,7 @@ msgstr "Akýkoľvek používateľ" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Požiť textové pole" @@ -7895,10 +7896,10 @@ msgid "Generate Password" msgstr "Vytvoriť Heslo" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7911,7 +7912,7 @@ msgstr "Nasledujúci dopyt zlyhal: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Bohužiaľ sa nepodarilo obnoviť odstránenú rutinu." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7928,7 +7929,7 @@ msgstr "Rutina %1$s bola zmenená." msgid "Event %1$s has been created." msgstr "Tabuľka %1$s bola vytvorená." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "Pri zpracovaní požadavky došlo k niekoľkým chybám:" @@ -7938,14 +7939,14 @@ msgstr "Pri zpracovaní požadavky došlo k niekoľkým chybám:" msgid "Edit event" msgstr "Webový server" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Chyba pri spracovaní požiadavky" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Podrobnosti" @@ -7960,7 +7961,7 @@ msgstr "Typ udalosti" msgid "Event type" msgstr "Typ udalosti" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Zmeniť na %s" @@ -7995,13 +7996,13 @@ msgstr "Koniec" msgid "On completion preserve" msgstr "Zachovať pri ukončení" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8026,7 +8027,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8048,7 +8049,7 @@ msgstr "" msgid "Returns" msgstr "Návratový typ" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 #, fuzzy #| msgid "" #| "You are using PHP's deprecated 'mysql' extension, which is not capable of " @@ -8064,120 +8065,120 @@ msgstr "" "zloženými dopytmi. Vykonanie niektorých uložených rutín môže zlyhať! " "Aby ste sa vyhli týmto problémom, použite prosím nové rozšírenie 'mysqli'." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Chybný typ rutiny: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Bohužiaľ sa nepodarilo obnoviť odstránenú rutinu." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutina %1$s bola zmenená." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Rutina %1$s bola vytvorená." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Upraviť rutinu" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Názvy stĺpcov" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Priame odkazy" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Dĺžka/Nastaviť*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy msgid "Add parameter" msgstr "Odstrániť index/indexy" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Odstrániť databázu" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Návratový typ" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dĺžka/Nastaviť*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Parametre tabuľky" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Zabezpečenie" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8185,18 +8186,18 @@ msgstr[0] "Posledným príkazom v procedúre bol ovplyvnený %d riadok" msgstr[1] "Posledným príkazom v procedúre boli ovplyvnené %d riadky" msgstr[2] "Posledným príkazom v procedúre bolo ovplyvnených %d riadkov" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Výsledky spustenia rutiny %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Spustiť rutinu" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8500,7 +8501,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Neznámy jazyk: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Aktuálny server" @@ -8531,50 +8532,50 @@ msgstr "Cieľová databáza" msgid "Click to select" msgstr "Kliknite pre vybranie" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Spustiť SQL príkaz(y) na serveri %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Spustiť SQL dopyt/dopyty na databázu %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Vyčistiť" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Stĺpce" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Prepísať existujúci príkaz s rovnakým menom" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Neprepisovať tento dopyt z hlavného okna" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Oddeľovač" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Zobraziť tento dopyt znovu" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Iba prezrieť" @@ -8647,8 +8648,8 @@ msgid "" "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." +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" +"sdocumentation%s." #: libraries/tbl_common.inc.php:53 #, fuzzy, php-format @@ -8678,7 +8679,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Index" @@ -8731,12 +8732,12 @@ msgid "As defined:" msgstr "Podľa zadania:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primárny" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Celý text" @@ -8750,12 +8751,12 @@ msgstr "" msgid "after %s" msgstr "Po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Pridať %s stĺpcov" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Musíte pridať aspoň jeden stĺpec." @@ -8809,7 +8810,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Zobrazí odkaz pre stiahnutie tohto obrázka." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8976,8 +8977,8 @@ msgid "Protocol version" msgstr "Verzia protokolu" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Používateľ" @@ -9108,17 +9109,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Žiadne databázy" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filtrovať tabuľky podľa mena" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtrovať tabuľky podľa mena" @@ -9139,7 +9140,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Vytvoriť relaciu" @@ -9201,40 +9202,40 @@ msgstr "" msgid "Number of tables" msgstr "Počet tabuliek" -#: pmd_general.php:449 +#: pmd_general.php:447 #, fuzzy msgid "Delete relation" msgstr "Vytvoriť relaciu" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Zobraziť prepojenia" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Okrem" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "poddopyt" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Premenovať tabuľku na" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nové meno" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Zlúčiť" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Zapnuté parametre" @@ -9354,8 +9355,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:305 msgid "Save to browser's storage" @@ -9399,13 +9400,13 @@ msgstr "Vyberte binárny log na zobrazenie" msgid "Files" msgstr "Súbory" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Zobraziť skrátene dopyty" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" @@ -9421,7 +9422,7 @@ msgstr "Pozícia" msgid "Original position" msgstr "Pôvodná pozícia" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informácia" @@ -9451,11 +9452,11 @@ msgstr "Master replikácia" msgid "Slave replication" msgstr "Slave replikácia" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Zobraziť štatistiky" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9703,7 +9704,7 @@ msgid "None" msgstr "Žiadny" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" @@ -9720,7 +9721,7 @@ msgstr "Administrácia" msgid "Global privileges" msgstr "Globálne práva" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" @@ -9741,7 +9742,7 @@ msgstr "Prihlásenie" msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." @@ -9790,7 +9791,7 @@ msgstr "Vybraní používatelia bol úspešne odstránený." msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Upraviť oprávnenia" @@ -9805,7 +9806,7 @@ msgid "Export all" msgstr "Exportovať" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Akýkoľvek" @@ -9827,83 +9828,83 @@ msgstr "Oprávnenia" msgid "Users overview" msgstr "Prehľad používatelov" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Prideliť" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Odstrániť vybraných používateľov" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Pridať oprávnenia pre nasledujúcu databázu" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Náhradzujúcim znakom % a _ by mal predchádzať znak \\, pokiaľ ich nechcete " "použiť doslovne" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Pridať oprávnenia pre nasledujúcu tabuľku" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Vytvoriť nového používateľa s rovnakými právami a ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... zachovať pôvodného používateľa." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... zmazať pôvodného používateľa z tabuliek používateľov." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9911,41 +9912,41 @@ msgstr "" "... zmazať pôvodného používateľa z tabuliek používateľov a potom " "znovunačítať oprávnenia." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Databáza pre používateľa" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Prideliť všetky oprávnenia na databázu "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Používatelia majúci prístup k "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globálny" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "závislé na databáze" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "nahradzujúci znak" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Užívateľ bol pridaný." @@ -10224,49 +10225,49 @@ msgstr "Zobraziť otvorené tabuľky" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Súvisiace odkazy:" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Typ dopytu" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Úvod" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10274,31 +10275,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Dopytov od spustenia: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Tento MySQL server beží %1$s. Bol spustený %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10306,18 +10307,18 @@ msgstr "" "Tento server je nakonfigurovaný ako master a slave v " "replikačnom procese." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Tento MYSQL server je nakonfigurovaný ako master v replikačnom " "procese." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento MYSQL server pracuje ako slave v replikačnom procese." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10325,11 +10326,11 @@ msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Stav replikácie" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10337,45 +10338,45 @@ msgstr "" "Na vyťaženom serveri môže dôjsť k pretečeniu počítadiel, takže štatistiky " "servera môžu byť nepresné." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Prijaté" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Odoslané" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "max. súčasných pripojení" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Nepodarených pokusov" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Prerušené" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Príkaz" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet neúspešných pokusov o pripojenie k MySQL serveru." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10385,16 +10386,16 @@ msgstr "" "ale zároveň prekročili hodnotu binlog_cache_size a museli tak použiť dočasný " "súbor na uloženie príkazov transakcie." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcií, ktoré využili vyrovnávaciu pamäť binárneho logu." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10406,11 +10407,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10418,7 +10419,7 @@ msgstr "" "Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri " "vykonávaní príkazov." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10426,7 +10427,7 @@ msgstr "" "Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla " "chyba (pravdepodobne opakujúci sa kľúč)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10434,23 +10435,23 @@ msgstr "" "Počet vlákien používaných príkazmi INSERT DELAYED. Každá samostatná tabuľka, " "na ktorú je použitý príkaz INSERT DELAYED, ma svoje vlastné vlákno." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Koľkokrát bol z tabuľky odstránený riadok." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10460,7 +10461,7 @@ msgstr "" "tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover " "zobrazuje počet doposiaľ objavených tabuliek." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10470,7 +10471,7 @@ msgstr "" "znamená to že server vykonáva príliš veľa kompletných prechádzaní indexov; " "napríklad, SELECT col1 FROM foo, za predpokladu že col1 je indexovaný." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10478,7 +10479,7 @@ msgstr "" "Počet požiadavkov na načítanie riadku podľa kľúča. Ak je táto hodnota " "vysoká, je to dobrým znamením že sú príkazy a tabuľky správne indexované." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10488,7 +10489,7 @@ msgstr "" "Táto hodnota sa zvyšuje ak sa načítava indexovaný stĺpec v danom rozsahu " "alebo ak sa vykonáva prehľadávanie indexu." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10497,7 +10498,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... " "DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10510,7 +10511,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10522,35 +10523,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Počet požiadavkov na zmenu riadku v tabuľke." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Počet požiadavkov na vloženie nového riadku do tabuľky." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránok obsahujúcich dáta (nečistých aj čistých)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránok, na ktoré je požiadavka na vyprázdnenie." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10560,7 +10561,7 @@ msgstr "" "momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani " "odstránené z nejakého iného dôvodu." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10572,11 +10573,11 @@ msgstr "" "hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10584,7 +10585,7 @@ msgstr "" "Počet \"náhodných\" predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "príkazoch, ktoré prehľadávajú veľkú časť tabuľky, ale v náhodnom poradí." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10592,11 +10593,11 @@ msgstr "" "Počet sekvenčných predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "vykonávaní sekvenčného prehľadávania celej tabuľky." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10604,7 +10605,7 @@ msgstr "" "Počet logických načítaní, ktoré sa nemohli vykonať z vyrovnávacej pamäte a " "namiesto toho bolo vykonané načítanie celej jednej stránky." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10618,88 +10619,88 @@ msgstr "" "počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, " "mala by byť nízka." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Počet čakaní na vyprázdnenie vyrovnávacej pamäte logu z dôvodu jej zaplnenia." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Počet fsync() zápisov vykonaných do logovacieho súboru." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10708,51 +10709,51 @@ msgstr "" "hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť " "na bajty." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Priemerný čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximálny čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Koľkokrát sa muselo čakať na zámok na riadok." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet riadkov odstránených z InnoDB tabuliek." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet riadkov vložených do InnoDB tabuliek." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných riadkov z InnoDB tabuliek." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených riadkov v InnoDB tabuľkách." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10761,7 +10762,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10769,7 +10770,7 @@ msgstr "" "Počet nevyužitých blokov vo vyrovnávacej pamäti kľúčov. Z tejto hodnoty " "môžete zistiť koľko vyrovnávacej pamäte sa práve používa." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10778,17 +10779,17 @@ msgstr "" "Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje " "najväčšie množstvo blokov, ktoré kedy naraz použité." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formát importovaného súboru" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Počet požiadavkov na načítanie kľúčového bloku z vyrovnávacej pamäti." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10799,26 +10800,26 @@ msgstr "" "je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu " "Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Počet požiadavkov na zápis kľúčového bloku do vyrovnávacej pamäti." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Počet fyzických zápisov kľúčového bloku na disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10829,17 +10830,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet riadkov čakajúcich na zápis cez INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10847,38 +10848,38 @@ msgstr "" "Počet doposiaľ otvorených tabuliek. Ak je táto hodnota príliš vysoká, " "pravdepodobne je vyrovnávacia pamäť pre tabuľky príliš malá." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otvorených streamov (väčšinou využívané na logovanie)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10890,7 +10891,7 @@ msgstr "" "veľkosti vyrovnávacej pamäte príkazov. Vyrovnávacia pamäť príkazov používa " "stratégiu (LRU), odstránenie najdlhšie nepoužitých príkazov ako prvých." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10898,19 +10899,19 @@ msgstr "" "Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné " "alebo nevyhovujú nastaveniu query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10918,12 +10919,12 @@ msgstr "" "Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali " "by ste starostlivo skontrolovať indexy vašich tabuliek." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, ktoré na referenčnej tabuľke využili intervalové vyhľadávanie." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10932,7 +10933,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10940,15 +10941,15 @@ msgstr "" "Počet spojení, ktoré na prvej tabuľke využili intervalové vyhľadávanie (táto " "hodnota nie je kritická ani v prípade, že je vysoká.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, ktoré vykonali kompletné prehľadanie prvej tabuľky." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Počet dočasných tabuliek, otvorených podriadeným SQL vláknom." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10956,13 +10957,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Táto položka obsahuje hodnotu ON ak je tento server podriadeným a je " "pripojený k prislúchajúcemu nadriadenému servru." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10970,14 +10971,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Počet príkazov, ktorých vykonanie zabralo viac ako je hodnota " "long_query_time." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10987,23 +10988,23 @@ msgstr "" "je táto hodnota prílis veľká, mali by ste pouvažovať nad zvýšením hodnoty " "systémového nastavania sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Počet zoradení uskutočnených prehľadávaním tabuľky." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11015,7 +11016,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11025,11 +11026,11 @@ msgstr "" "dá vypočítať zo vzťahu Threads_created/Connections. Ak je táto hodnota v " "červenom, mali by ste zvýšiť hodnotu thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11040,75 +11041,75 @@ msgstr "" "Threads_created vysoká, mohli by ste zvýšiť hodnotu thread_cache_size (to " "však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Sledovanie nie je aktívne." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Počet nespiacich vlákien." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Štart" -#: server_status.php:1587 +#: server_status.php:1594 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Úvod" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy msgid "Add chart" msgstr "Odstrániť index/indexy" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Obnoviť" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "Stĺpce s textovou oblasťou" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Obnoviť východziu hodnotu" -#: server_status.php:1631 +#: server_status.php:1640 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Úvod" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11117,7 +11118,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11125,18 +11126,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11144,11 +11145,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11156,88 +11157,88 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Odstrániť graf" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Vybrať série:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "alebo zadajte meno premennej:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Pridať nového používateľa" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "Series:" msgid "Series in Chart:" msgstr "Série:" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Zobraziť štatistiky" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Zvolený časový rozsah:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Typ dopytu" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11245,7 +11246,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekundy" msgstr[2] "%d sekúnd" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -12007,35 +12008,35 @@ msgstr "Skontrolovať referenčnú integritu:" msgid "Showing tables" msgstr "Zobraziť tabuľky" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Zabrané miesto" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektívny" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Štatistika riadku" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statický" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamický" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Dĺžka riadku" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Veľkosť riadku" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12058,7 +12059,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12112,53 +12113,53 @@ msgstr "Bol pridaný index pre %s" msgid "Show more actions" msgstr "Zobraziť viac operácii" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Odstrániť stĺpce" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Náhľad k tlači" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Zobraziť prepojenia" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Navrhnúť štruktúru tabuľky" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Pridať stĺpec" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Na konci tabuľky" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Na začiatku tabuľky" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Vytvoriť index na %s stĺpcoch" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12675,8 +12676,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12811,8 +12812,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13995,8 +13996,8 @@ msgstr "concurrent_insert je nastavené na 0" #~ 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 649792a9a9..94b8043b20 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-18 22:38+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" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3);\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: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -38,53 +38,54 @@ msgstr "" "Ciljnega okna ni bilo mogoče osvežiti. Morda ste zaprli nadrejeno okno ali " "pa vaš brskalnik blokira osveževanje varnostnih parametrov med okni." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Iskanje" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Izvedi" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Opis" @@ -117,13 +118,13 @@ msgstr "Pripomba zbirke podatkov: " msgid "Table comments" msgstr "Pripomba tabele" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Pripomba tabele" msgid "Column" msgstr "Stolpec" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Vrsta" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Povezave z" msgid "Comments" msgstr "Pripombe" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Pripombe" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Ne" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Preglej povzetek stanja zbirke podatkov" msgid "No tables found in database." msgstr "V zbirki podatkov ni mogoče najti tabel." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Izberi vse" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Prekliči izbor vsega" @@ -321,12 +322,12 @@ msgstr "Dodaj omejitve" msgid "Switch to copied database" msgstr "Preklopi na kopirano zbirko podatkov" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" @@ -349,17 +350,17 @@ msgstr "Uredi ali izvozi relacijsko shemo" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Vrstic" @@ -374,21 +375,21 @@ msgstr "v uporabi" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Ustvarjeno" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Zadnjič posodobljeno" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Zadnjič pregledano" @@ -453,7 +454,7 @@ msgid "Del" msgstr "Briši" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ali" @@ -494,60 +495,28 @@ msgstr "Izvedi poizvedbo" msgid "Access denied" msgstr "Dostop zavrnjen" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "katerokoli besedo" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "vse besede" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "točno določeno frazo" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "kot običajni izraz (regular expression)" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati iskanja \"%s\" %s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s zadetek v tabeli %2$s" -msgstr[1] "%1$s zadetka v tabeli %2$s" -msgstr[2] "%1$s zadetki v tabeli %2$s" -msgstr[3] "%1$s zadetkov v tabeli %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Prebrskaj" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Izbrišem zadetke v tabeli %s?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Izbriši" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -556,27 +525,61 @@ msgstr[1] "Skupaj: %s zadetka" msgstr[2] "Skupaj: %s zadetki" msgstr[3] "Skupaj: %s zadetkov" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s zadetek v tabeli %2$s" +msgstr[1] "%1$s zadetka v tabeli %2$s" +msgstr[2] "%1$s zadetki v tabeli %2$s" +msgstr[3] "%1$s zadetkov v tabeli %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Prebrskaj" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Izbrišem zadetke v tabeli %s?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Izbriši" + +#: db_search.php:362 msgid "Search in database" msgstr "Išči v zbirki podatkov" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Išči besede ali vrednosti (nadomestni znak: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Najdi:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Besede so ločene s presledkom (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Znotraj tabel:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "V stolpcu:" @@ -615,8 +618,8 @@ msgstr "Sledenje ni aktivno." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -624,7 +627,7 @@ msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." msgid "View" msgstr "Pogled" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -634,93 +637,89 @@ msgstr "Podvojevanje" msgid "Sum" msgstr "Vsota" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Z označenim:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Označi vse" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Počisti vse" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvozi" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Izprazni" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Zavrzi" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Preveri tabelo" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimiraj tabelo" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Popravi tabelo" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiziraj tabelo" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Dodaj predpono tabeli" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Zamenjaj predpono tabele" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopiraj tabelo s predpono" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Slovar podatkov" @@ -733,9 +732,9 @@ msgstr "Sledene tabele" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Zbirka podatkov" @@ -752,17 +751,17 @@ msgstr "Ustvarjeno" msgid "Updated" msgstr "Posodobljeno" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Stanje" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Dejanje" @@ -794,7 +793,7 @@ msgstr "Posnetek strukture" msgid "Untracked tables" msgstr "Nesledene tabele" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Sledi tabeli" @@ -931,8 +930,8 @@ msgstr "" #: import.php:86 #, 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 "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." @@ -1010,13 +1009,13 @@ msgstr "" "povečate vaše časovne omejitve PHP." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Poizvedba SQL je bila uspešno izvedena" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazaj" @@ -1100,8 +1099,8 @@ msgstr "Geslo je prazno!" msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Dodaj uporabnika" @@ -1119,7 +1118,7 @@ msgid "Close" msgstr "Zapri" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1146,13 +1145,13 @@ msgstr "Statični podatki" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Skupaj" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Drugo" @@ -1182,7 +1181,7 @@ msgstr "Promet strežnika (v KiB)" msgid "Connections since last refresh" msgstr "Povezav od zadnje osvežitve" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesi" @@ -1246,13 +1245,13 @@ msgstr "Sistemska izmenjava" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1304,7 +1303,7 @@ msgstr "Poslanih bajtov" msgid "Bytes received" msgstr "Prejetih bajtov" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Povezave" @@ -1343,11 +1342,11 @@ msgstr "%d tabel(a)" msgid "Questions" msgstr "Vprašanja" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Promet" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Nastavitve" @@ -1370,8 +1369,8 @@ msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Brez" @@ -1471,7 +1470,7 @@ msgstr "Spremeni nastavitve" msgid "Current settings" msgstr "Trenutne nastavitve" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Naslov grafikona" @@ -1556,7 +1555,7 @@ msgstr "Razloži izhod" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Čas" @@ -1651,10 +1650,10 @@ msgstr "" "Gradnja grafikona z uvoženo konfiguracijo je spodletela. Ponastavljanje na " "privzeto konfiguracijo ..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvozi" @@ -1702,9 +1701,9 @@ msgstr "Uporabljena spremenljivka/formula" msgid "Test" msgstr "Preizkus" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Prekliči" @@ -1732,9 +1731,9 @@ msgstr "Brisanje stolpca" msgid "Adding Primary Key" msgstr "Dodajanje primarnega ključa" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "V redu" @@ -1810,7 +1809,7 @@ msgstr "Brisanje" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Opredelitev shranjene funkcije mora vsebovati izjavo RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "Urejevalnik ENUM/SET" @@ -1849,8 +1848,8 @@ msgstr "Prikaži polje poizvedbe" msgid "No rows selected" msgstr "Ni izbranih vrstic" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Spremeni" @@ -1865,7 +1864,7 @@ msgid "%d is not valid row number." msgstr "%d ni veljavna številka vrstice." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2370,16 +2369,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Neveljaven znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel »%2$s«" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "na sekundo" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "na minuto" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "na uro" @@ -2479,8 +2478,8 @@ msgstr "Uredi po ključu" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Možnosti" @@ -2533,7 +2532,7 @@ msgid "The row has been deleted" msgstr "Vrstica je izbrisana" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Prekini proces" @@ -2562,27 +2561,27 @@ msgstr "skupaj" msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Predstavi podatke GIS" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Ustvari pogled" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Povezave ni mogoče najti" @@ -2655,46 +2654,46 @@ msgstr "Če želite še naprej uporabljati program, morate omogočiti piškotke. msgid "Javascript must be enabled past this point" msgstr "Po tej točki mora biti JavaScript omogočen" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Ni definiranega indeksa!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Edinstven" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Stisnjen" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Pripomba" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primarni ključ je zavržen" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s je zavržen" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2703,9 +2702,9 @@ msgstr "" "Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko " "odstrani." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Zbirke podatkov" @@ -2715,7 +2714,7 @@ msgstr "Zbirke podatkov" msgid "Server" msgstr "Strežnik" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2728,102 +2727,102 @@ msgstr "Strežnik" msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Vstavi" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Sledenje" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Sprožilci" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabela je prazna!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Zbirka podatkov se zdi prazna!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Poizvedba" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegiji" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutina" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Dogodki" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Oblikovalnik" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Uporabniki" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sinhroniziraj" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Dvojiški dnevnik" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Spremenljivke" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Nabori znakov" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Vtičniki" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Pogoni" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Napaka" @@ -2871,64 +2870,64 @@ msgstr "Nedavne tabele" msgid "There are no recent tables" msgstr "Ni nobenih nedavnih tabel" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Za skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je na voljo na tem strežniku MySQL." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, 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:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "neznano stanje tabele: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Izvorne zbirke podatkov `%s` nisem našel!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Ciljne zbirke podatkov `%s` nisem našel!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Neveljavna zbirka podatkov" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Neveljavno ime tabele" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelo %1$s sem preimenoval v %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2937,7 +2936,7 @@ msgstr "" "Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej $cfg" "['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2948,22 +2947,22 @@ msgstr "" "spremembe po osvežitvi te strani ne bodo stalne. Prosimo, preverite, ali je " "bila struktura tabele spremenjena." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkcija" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Vrednost" @@ -2971,7 +2970,7 @@ msgstr "Vrednost" msgid "Table Search" msgstr "Iskanje po tabeli" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Uredi/Vstavi" @@ -3111,20 +3110,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Majhno število z decimalno vejico; dovoljene so vrednosti od -3,402823466E" "+38 do -1,175494351E-38, 0 in od 1,175494351E-38 do 3,402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od " -"-1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od " +"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od -" +"1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od " "2,2250738585072014E-308 do 1,7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3419,8 +3418,8 @@ msgstr "Dobrodošli v %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." @@ -3533,12 +3532,12 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Podatki" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Presežek" @@ -3651,18 +3650,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "Poizvedba SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3750,7 +3749,7 @@ msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" msgid "Click to toggle" msgstr "Kliknite za preklop" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" @@ -3760,8 +3759,8 @@ msgstr "Prebrskajte svoj računalnik:" msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" @@ -3946,7 +3945,7 @@ msgstr "Povrni privzeto vrednost" msgid "Allow users to customize this value" msgstr "Dovoli uporabnikom prilagajati to vrednost" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4237,7 +4236,7 @@ msgid "Character set of the file" msgstr "Nabor znakov datoteke" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Oblika" @@ -4535,7 +4534,7 @@ msgstr "Navigacijski okvir" msgid "Customize appearance of the navigation frame" msgstr "Prilagodite prikaz navigacijskega okvirja" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Strežniki" @@ -5873,7 +5872,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "Določa, ali naj polje s poizvedbo ostane na zaslonu po njeni izvedbi" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Ohrani polje poizvedbe" @@ -6203,7 +6202,7 @@ msgstr "Razširitev %s manjka. Prosimo, preverite vašo konfiguracijo PHP." msgid "possible deep recursion attack" msgstr "možen napad globoke rekurzije" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6211,15 +6210,15 @@ msgstr "" "Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno " "konfigurirana)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Strežnik se ne odziva." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Podrobnosti ..." @@ -6276,8 +6275,8 @@ msgstr "Ustvari tabelo" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Ime" @@ -6378,8 +6377,8 @@ msgstr ", @TABLE@ bo postalo ime tabele" #, 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 "" "Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate " "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " @@ -6391,7 +6390,7 @@ msgid "use this for future exports" msgstr "uporabi to za prihodnje izvoze" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Nabor znakov datoteke:" @@ -6910,8 +6909,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." @@ -6975,7 +6974,7 @@ msgstr "Dogodek" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Opredelitev" @@ -7036,7 +7035,7 @@ msgstr "Prikaži vrste MIME" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Gostitelj" @@ -7252,8 +7251,8 @@ msgstr "Izvozi vsebine" msgid "No data found for GIS visualization." msgstr "Za predstavitev GIS ni najdenih podatkov." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." @@ -7430,77 +7429,77 @@ msgstr "Združljivostni način SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne uporabi AUTO_INCREMENT za ničelne vrednosti" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Skrij" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Dvojiško" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Zaradi njegove dolžine
    stolpca morda ne bo mogoče urejati" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Dvojiško - ne urejaj" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "imenik za nalaganje datotek" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "in potem" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Pojdi nazaj na prejšnjo stran" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" @@ -7524,7 +7523,7 @@ msgid "To" msgstr "Za" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Pošlji" @@ -7540,7 +7539,7 @@ msgstr "Dodaj predpono" msgid "Do you really want to execute the following query?" msgstr "Ali res želite izvesti naslednjo poizvedbo?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Brez sprememb" @@ -7790,7 +7789,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Navodila za posodobitev tabele column_comments najdete v dokumentaciji" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Označena poizvedba SQL" @@ -7841,6 +7840,10 @@ msgstr "" msgid "no description" msgstr "brez opisa" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Počisti vse" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Konfiguracija podrejencev" @@ -7878,8 +7881,8 @@ msgstr "Stanje glavnega strežnika" msgid "Slave status" msgstr "Stanje podrejenca" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Spremenljivka" @@ -7906,7 +7909,7 @@ msgstr "Kateri koli uporabnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Uporabi besedilno polje" @@ -7939,10 +7942,10 @@ msgid "Generate Password" msgstr "Ustvari geslo" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7953,7 +7956,7 @@ msgstr "Naslednja poizvedba je spodletela: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Oprostite, zavrženega dogodka nam ni uspelo obnoviti." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Varnostno kopirana poizvedba je bila:" @@ -7968,7 +7971,7 @@ msgstr "Dogodek %1$s je bil spremenjen." msgid "Event %1$s has been created." msgstr "Dogodek %1$s je ustvarjen." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 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:" @@ -7977,14 +7980,14 @@ msgstr "Med obdelovanjem vaše zahteve je prišlo do ene ali več napak:" msgid "Edit event" msgstr "Uredi dogodek" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Napaka v obdelovanju zahteve" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Podrobnosti" @@ -7997,7 +8000,7 @@ msgstr "Ime dogodka" msgid "Event type" msgstr "Vrsta dogodka" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Spremeni v %s" @@ -8024,13 +8027,13 @@ msgstr "Konec" msgid "On completion preserve" msgstr "Ob dokončanju ohrani" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Opredeljevalec" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Opredeljevalec mora biti oblike \"uporabniškoime@imegostitelja\"" @@ -8055,7 +8058,7 @@ msgstr "Navesti morate veljavno vrsto dogodka." msgid "You must provide an event definition." msgstr "Navesti morate opredelitev dogodka." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Novo" @@ -8075,7 +8078,7 @@ msgstr "Stanje razporejevalnika dogodkov" msgid "Returns" msgstr "Vrnjeno" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8087,89 +8090,89 @@ msgstr "" "[/strong] Prosimo, uporabljajte izboljšano razširitev 'mysqli' v izogib " "morebitnim težavam." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Neveljavna vrsta rutine: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Oprostite, zavržene rutine nam ni uspelo obnoviti." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutina %1$s je bila spremenjena." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Rutina %1$s je bila ustvarjena." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Uredi rutino" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Ime rutine" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Smer" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Dolžina/Vrednosti" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Dodaj parameter" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Odstrani zadnji parameter" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Vrnjena vrsta" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Vrnjena dolžina/vrednosti" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Vrnjene možnosti" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Je deterministično" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Vrsta varnosti" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "Dostop do podatkov SQL" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Navesti morate ime rutine" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Neveljavna smer \"%s\" podana za parameter." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8177,19 +8180,19 @@ msgstr "" "Navesti morate dolžine/vrednosti za parametre rutine vrste ENUM, SET, " "VARCHAR in VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Navesti morate ime in vrsto vsakega parametra rutine." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Navesti morate veljavno vrsto vrnjene vrednosti dogodka." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Navesti morate opredelitev rutine." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8198,18 +8201,18 @@ 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" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Rezultati izvedbe rutine %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Izvedi rutino" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Parametri rutine" @@ -8492,7 +8495,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Neznani jezik: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Trenutni strežnik" @@ -8523,50 +8526,50 @@ msgstr "Ciljna zbirka podatkov" msgid "Click to select" msgstr "Kliknite za označitev" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Izvedi poizvedbo/poizvedbe SQL na zbirki podatkov %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Počisti" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zamenjaj obstoječ zaznamek z istim imenom" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepiši te poizvedbe od zunaj" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Ločilo" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Ponovno pokaži poizvedbo v tem oknu" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Samo pogled" @@ -8668,7 +8671,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -8719,12 +8722,12 @@ msgid "As defined:" msgstr "Kot določeno:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primarni" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Polno besedilo" @@ -8737,12 +8740,12 @@ msgstr "prvi" msgid "after %s" msgstr "po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s stolpec(-cev)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." @@ -8797,7 +8800,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Pokaže povezavo za prenos slike." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8971,8 +8974,8 @@ msgid "Protocol version" msgstr "Različica protokola" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Uporabnik" @@ -9108,15 +9111,15 @@ msgstr "" "Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za " "morebitna vprašanja." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Brez zbirk podatkov" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "Filtriraj zbirke podatkov po imenu" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtriraj tabele po imenu" @@ -9137,7 +9140,7 @@ msgstr "Pokaži/Skrij levi meni" msgid "Save position" msgstr "Shrani položaj" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Ustvari razmerje" @@ -9197,37 +9200,37 @@ msgstr "Skrij/Pokaži tabele brez razmerij" msgid "Number of tables" msgstr "Število tabel" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Izbriši razmerje" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Operator razmerja" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Razen" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "podpoizvedba" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Preimenuj v" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Novo ime" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Agregat" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Dejavne možnosti" @@ -9391,13 +9394,13 @@ msgstr "Izberite dvojiški dnevnik za pregled" msgid "Files" msgstr "Datoteke" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Skrči prikazane poizvedbe" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" @@ -9413,7 +9416,7 @@ msgstr "Položaj" msgid "Original position" msgstr "Izvirni položaj" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Podatki" @@ -9443,11 +9446,11 @@ msgstr "Podvojevanje glavnega strežnika" msgid "Slave replication" msgstr "Podvojevanje podrejencev" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Omogoči statistiko" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9698,7 +9701,7 @@ msgid "None" msgstr "Brez" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" @@ -9715,7 +9718,7 @@ msgstr "Administracija" msgid "Global privileges" msgstr "Globalni privilegiji" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilegiji tipični za podatkovno zbirko" @@ -9736,7 +9739,7 @@ msgstr "Podatki o prijavi" msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Najden ni bil noben uporabnik." @@ -9785,7 +9788,7 @@ msgstr "Uspešno sem izbrisal izbrane uporabnike." msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Uredi privilegije" @@ -9798,7 +9801,7 @@ msgid "Export all" msgstr "Izvozi vse" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Kateri koli" @@ -9815,81 +9818,81 @@ msgstr "Privilegiji %s" msgid "Users overview" msgstr "Pregled uporabnikov" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Dovoli" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Izbriši izbrane uporabnike" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na naslednji zbirki podatkov" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite " "uporabiti dobesedno" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na naslednji tabeli" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Ustvari novega uporabnika z enakimi pravicami in ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... obdrži starega." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... izbriši starega s seznama uporabnikov." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... prekliči vse aktivne pravice starega uporabnika ter jih izbriši." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9897,42 +9900,42 @@ msgstr "" "... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Zbirka podatkov za uporabnika" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Dodeli vse privilegije za podatkovno zbirko "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Uporabniški dostop do "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globalno" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "nadomestni znak" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Uporabnik je dodan." @@ -10218,23 +10221,23 @@ msgstr "Prikaži samo opozorilne vrednosti" msgid "Filter by category..." msgstr "Filtriraj po kategoriji ..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Prikaži neoblikovane vrednosti" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Sorodne povezave:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Zaženi analitik" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Navodila" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10242,7 +10245,7 @@ msgstr "" "Svetovalni sistem lahko nudi priporočila o strežniških spremenljivkah tako, " "da analizira spremenljivke stanja strežnika." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10251,7 +10254,7 @@ msgstr "" "Kakor koli, pomnite, da sistem nudi priporočila, ki temeljijo na preprostih " "računih in splošnih smernicah, ki morda ne ustrezajo vašemu sistemu." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10262,7 +10265,7 @@ msgstr "" "razveljavite. Napačno nastavljanje ima lahko na zmogljivost zelo negativen " "učinek." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10273,31 +10276,31 @@ msgstr "" "podatkov in razveljavitev spremembe, če ni jasno izmerljivega izboljšanja." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Vprašanj od zagona: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "Št." -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Promet omrežja od zagona: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Strežnik MySQL deluje že %1$s. Zagnal se je %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10305,18 +10308,18 @@ msgstr "" "Strežnik MySQL deluje kot glavni strežnik in podrejenec v " "postopku podvojevanja." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10324,11 +10327,11 @@ msgstr "" "Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " "razdelek o podvojevanju." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Stanje podvojevanja" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10336,35 +10339,35 @@ msgstr "" "Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta " "statistika, kot jo poroča strežnik MySQL, morda napačna." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Prejeto" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Poslano" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "največ sočasnih povezav" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Neuspeli poizkusi" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Prekinjeno" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Ukaz" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10372,11 +10375,11 @@ msgstr "" "Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil " "povezave." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10386,18 +10389,18 @@ msgstr "" "dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " "shranitev izjav iz transakcije uporabljene začasne datoteke." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " "dnevnika." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10409,11 +10412,11 @@ msgstr "" "povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " "na pomnilniku namesto na disku." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10421,7 +10424,7 @@ msgstr "" "Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " "med izvajanjem stavkov." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10429,7 +10432,7 @@ msgstr "" "Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " "napake (najverjetneje podvojen ključ)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10437,23 +10440,23 @@ msgstr "" "Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, " "na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10463,7 +10466,7 @@ msgstr "" "navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " "so bile tabele odkrite." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10473,7 +10476,7 @@ msgstr "" "kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 " "FROM foo, pri čemer se predpostavlja, da je col1 indeksiran." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10482,7 +10485,7 @@ msgstr "" "visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " "indeksirane." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10492,7 +10495,7 @@ msgstr "" "povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " "pregledujete indeks." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10500,7 +10503,7 @@ msgstr "" "Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Postopek " "branja se uporablja predvsem za optimizacijo ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10512,7 +10515,7 @@ msgstr "" "Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " "tabel, ali stike, ki ne uporabljajo ključev pravilno." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10524,36 +10527,36 @@ msgstr "" "tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " "prednosti indeksov, ki jih imate." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Število prostih strani." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10563,7 +10566,7 @@ msgstr "" "trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " "ne morejo biti izplaknjene ali odstranjene." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10575,11 +10578,11 @@ msgstr "" "lahko izračuna tudi kot Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Skupna velikost zaloge medpomnilnika, v straneh." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10587,7 +10590,7 @@ msgstr "" "Število začetih \"naključnih\" vnaprejšnjih branj InnoDB. To se zgodi, ko " "poizvedba zahteva pregled večjega dela tabele, vendar v naključnem redu." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10595,11 +10598,11 @@ msgstr "" "Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " "izvaja zaporedno pregledovanje celotne tabele." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10607,7 +10610,7 @@ msgstr "" "Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " "medpomnilnika in je moral izvesti enostransko branje." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10621,52 +10624,52 @@ msgstr "" "čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, bi " "morala biti vrednost majhna." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Trenutno število čakajočih posegov fsync()." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Trenutno število čakajočih branj." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Trenutno število čakajočih pisanj." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10674,35 +10677,35 @@ msgstr "" "Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen " "in je bilo potrebno počakati, da se pred nadaljevanjem izplakne." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Število zahtev pisanja v dnevnik." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Število fizičnih pisanj v dnevniško datoteko." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Število čakajoče dnevniške datoteke fsyncs." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Čakajoča pisanja v dnevniško datoteko." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10710,51 +10713,51 @@ msgstr "" "Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih " "v straneh; velikost strani omogoča preprosto pretvorbo v bajte." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Število prebranih strani." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10763,7 +10766,7 @@ msgstr "" "vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " "Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10771,7 +10774,7 @@ msgstr "" "Število neuporabljenih blokov v predpomnilniku ključev. To vrednost lahko " "uporabite, da ugotovite, koliko predpomnilnika ključev je v uporabi." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10781,15 +10784,15 @@ msgstr "" "dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " "naenkrat v uporabi." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Odstotek uporabljenega predpomnilnika ključev (izračunana vrednost)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Število zahtev za branje bloka ključev iz predpomnilnika." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10799,7 +10802,7 @@ msgstr "" "je vaša vrednost key_buffer_size najverjetneje premajhna. Razmerje " "pogrešitev predpomnilnika se lahko izračuna kot Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10807,22 +10810,22 @@ msgstr "" "Napačno izračunan predpomnilnik ključev kot delež fizičnih branj v " "primerjavi z zahtevami za branje (izračunana vrednost)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Število zahtev za pisanje bloka ključev v predpomnilnik." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Število fizičnih pisanj bloka ključev na disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Odstotek fizičnih zapisov v primerjavi z zahtevami za zapis (izračunana " "vrednost)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10833,17 +10836,17 @@ msgstr "" "enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " "poizvedba." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10851,19 +10854,19 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10873,19 +10876,19 @@ msgstr "" "število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " "izvedbo stavka FLUSH QUERY CACHE." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10898,7 +10901,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10906,19 +10909,19 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10926,11 +10929,11 @@ msgstr "" "Število stikov, ki ne uporabljajo indeksov. Če vrednost ni 0, skrbno " "preverite indekse vaših tabel." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Število stikov, ki so uporabili iskanje območja na referenčni tabeli." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10938,7 +10941,7 @@ msgstr "" "Število stikov brez ključev, ki preverjajo uporabo ključev po vsaki vrstici. " "(Če to ni 0, previdno preverite indekse vaših tabel.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10946,16 +10949,16 @@ msgstr "" "Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " "kritično, četudi je veliko.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Število stikov, ki so izvedli celotni pregled na prvi tabeli." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Število začasnih tabel, ki so trenutno odprte s strani niti SQL podrejencev." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10963,11 +10966,11 @@ msgstr "" "Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " "SQL podrejenca." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "To je ON, če je strežnik podrejenec, povezan z glavnim strežnikom." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10975,12 +10978,12 @@ msgstr "" "Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " "sekund." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Število poizvedb, ki so porabile več kot long_query_time sekund." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10990,23 +10993,23 @@ msgstr "" "Če je vrednost velika, razmislite o povečanju sistemske spremenljivke " "sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Število razvrščanj, ki so bila storjena z razponi." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Število razvrščenih vrstic." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11018,7 +11021,7 @@ msgstr "" "optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " "ali uporabite podvojevanje." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11028,11 +11031,11 @@ msgstr "" "izračuna kot Threads_created/Connections. Če je vrednost obarvana rdeče, " "povečajte svoj thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11043,47 +11046,47 @@ msgstr "" "velik, boste morda želeli povečati vrednost thread_cache_size. (Po navadi to " "ne izboljša zmogljivosti v veliki meri, če imate dobro izvedbo niti.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Delež zadetkov predpomnilnika niti (izračunana vrednost)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Začni nadziranje" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Navodila/Namestitev" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Preurejanje/urejanje grafikonov je končano" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Dodaj grafikon" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Preuredi/uredi grafikone" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Hitrost osveževanja" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Stolpci grafikona" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Razvrstitev grafikonov" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11091,15 +11094,15 @@ msgstr "" "Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " "zapleteno nastavitev, jo boste morda želeli izvoziti." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Povrni na privzeto" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Navodila nadziranja" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11113,7 +11116,7 @@ msgstr "" "general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in " "poveča obremenitev strežnika do 15 %" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11125,11 +11128,11 @@ msgstr "" "tabelo podpira MySQL 5.1.6 in novejši. Kljub temu lahko še vedno uporabljate " "strežniške zmožnosti izrisa grafikonov." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Uporaba monitorja:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11140,7 +11143,7 @@ msgstr "" "pa odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem " "grafikonu." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11152,11 +11155,11 @@ msgstr "" "grafikon. Ko potrdite, bo to naložilo tabelo združenih poizvedb, kjer lahko " "kliknete na katere koli ponavljajoče stavke SELECT in jih naprej analizirate." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Prosimo, pomnite:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11169,79 +11172,79 @@ msgstr "" "časovni razpon ter onemogočite general_log in počistite njene tabele, ko " "nadziranja ne potrebujete več." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Prednastavljeni grafikon" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Spremenljivke stanja" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Izberite serije:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Pogosto nadzirano" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "ali vnesite ime spremenljivke:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Prikaži kot vrednost razlike" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Uporabi delitelja" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Pripni enoto k vrednostim podatkov" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Dodaj serijo" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Počisti serije" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Serije v grafikonu:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Statistika dnevnikov" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Izbrano časovno območje:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Odstrani spremenljive podatke v stavkih INSERT za boljše združevanje" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Rezultati so združeni po besedilu poizvedbe." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Analitik poizvedb" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11250,7 +11253,7 @@ msgstr[1] "%d sekundi" msgstr[2] "%d sekunde" msgstr[3] "%d sekund" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -12025,35 +12028,35 @@ msgstr "Preveri referenčno integriteto:" msgid "Showing tables" msgstr "Prikazovanje tabel" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Poraba prostora" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Učinkovito" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistika vrstic" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statično" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamično" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Dolžina vrstice" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Velikost vrstice" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Naslednji samodejni indeks" @@ -12077,7 +12080,7 @@ msgstr "Notranja relacija ni nujna, ko obstaja ustrezna relacija FOREIGN KEY." msgid "Foreign key constraint" msgstr "Omejitev tujih ključev" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Prostorsko" @@ -12127,49 +12130,49 @@ msgstr "Na %s je dodan indeks" msgid "Show more actions" msgstr "Prikaži več dejanj" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Premakni stolpce" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Prestavite stolpce z vlečenjem gor ali dol." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Urejevalni pogled" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Pogled relacij" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Predlagaj strukturo tabele" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Dodaj stolpec" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Na koncu tabele" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Na začetku tabele" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Ustvari indeks na  %s stolpcih" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "po particijah" @@ -12703,8 +12706,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Trenutni delež prostega pomnilnika predpomnilnika poizvedb je v primerjavi s " "skupnim pomnilnikom predpomnilnima poizvedb %s %%. Moral bi biti nad 80 %%" @@ -12859,8 +12862,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s %% vseh razvrščanj povzroča začasne tabele; vrednost bi morala biti nižja " "od 10 %%." diff --git a/po/sq.po b/po/sq.po index 35fadff587..3133f67421 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të " "ndalojnë përditësimet nëpërmjet dritareve." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Kërko" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Zbato" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Emri i kyçit" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Përshkrimi" @@ -115,13 +116,13 @@ msgstr "Komenti për databazën: " msgid "Table comments" msgstr "Komentet e tabelës" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Komentet e tabelës" msgid "Column" msgstr "Emrat e kollonave" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Lloji" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Lidhje me" msgid "Comments" msgstr "Komente" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Komente" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Jo" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Jo" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Shfaq dump (skema) e databazës" msgid "No tables found in database." msgstr "Nuk gjenden tabela në databazë." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Zgjidh gjithçka" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Asnjë zgjedhje" @@ -326,12 +327,12 @@ msgstr "Shto kushte" msgid "Switch to copied database" msgstr "Kalo tek databaza e kopjuar" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Collation" @@ -359,17 +360,17 @@ msgstr "Skema relacionale" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "rreshta" @@ -384,21 +385,21 @@ msgstr "në përdorim" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Krijimi" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Ndryshimi i fundit" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Kontrolli i fundit" @@ -463,7 +464,7 @@ msgid "Del" msgstr "Fshi" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ose" @@ -508,60 +509,28 @@ msgstr "Dërgo Query" msgid "Access denied" msgstr "Ndalohet hyrja" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "të paktën një prej fjalëve" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "të gjitha fjalët" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "frazën e saktë" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "si shprehje e rregullt" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultatet e kërkimit për \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s korrispondon(jnë) tek tabela %s" -msgstr[1] "%s korrispondon(jnë) tek tabela %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Shfleto" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Dump i të dhënave për tabelën" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Fshi" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -569,31 +538,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Gjithsej: %s korrispondues(ë)" msgstr[1] "Gjithsej: %s korrispondues(ë)" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s korrispondon(jnë) tek tabela %s" +msgstr[1] "%s korrispondon(jnë) tek tabela %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Shfleto" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Dump i të dhënave për tabelën" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Fshi" + +#: db_search.php:362 msgid "Search in database" msgstr "Kërko në databazë" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Fjala(ë) apo vlera(at) për t'u kërkuar (karakteri Jolly: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Gjej:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Fjalët veçohen me anë të një hapësirë bosh (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tek tabela(at):" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -636,8 +637,8 @@ msgstr "Gjurmimi nuk është aktiv." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -645,7 +646,7 @@ msgstr "" msgid "View" msgstr "Paraqitje" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -656,97 +657,93 @@ msgstr "Replikimi" msgid "Sum" msgstr "Sum" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "N.q.s. të zgjedhur:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Zgjidh gjithçka" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Asnjë zgjedhje" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporto" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Zbraz" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Elemino" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Kontrollo tabelën" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimizo tabelën" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Riparo tabelën" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizo tabelën" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Zëvendëso të dhënat e tabelës me file" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zëvendëso të dhënat e tabelës me file" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 #, fuzzy msgid "Data Dictionary" msgstr "Data Dictionary" @@ -760,9 +757,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databazat" @@ -780,17 +777,17 @@ msgstr "Krijo" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Gjendja" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Veprimi" @@ -824,7 +821,7 @@ msgstr "Vetëm struktura" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Kontrollo tabelën" @@ -974,8 +971,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1038,13 +1035,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Query SQL u zbatua me sukses" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Mbrapa" @@ -1141,8 +1138,8 @@ msgstr "Fjalëkalimi është bosh!" msgid "The passwords aren't the same!" msgstr "Fjalëkalimi nuk korrispondon!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1166,7 +1163,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1196,13 +1193,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Gjithsej" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1234,7 +1231,7 @@ msgstr "Zgjedhja e serverit" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Proceset" @@ -1300,13 +1297,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1364,7 +1361,7 @@ msgstr "" msgid "Bytes received" msgstr "Marrë" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Lidhje" @@ -1405,11 +1402,11 @@ msgstr "%s tabela(at)" msgid "Questions" msgstr "Operacione" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafiku" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1436,8 +1433,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Asnjë lloj" @@ -1537,7 +1534,7 @@ msgstr "Karakteristikat e përgjithshme të relacionit" msgid "Current settings" msgstr "Karakteristikat e përgjithshme të relacionit" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1623,7 +1620,7 @@ msgstr "Shpjego SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Koha" @@ -1730,10 +1727,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksporto" @@ -1788,9 +1785,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1821,9 +1818,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1929,7 +1926,7 @@ msgstr "Në fshirje e sipër të %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1971,8 +1968,8 @@ msgstr "query SQL" msgid "No rows selected" msgstr "Nuk ka rreshta të zgjedhur" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Ndrysho" @@ -1987,7 +1984,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2556,16 +2553,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "në sekondë" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "në minutë" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "në orë" @@ -2681,8 +2678,8 @@ msgstr "Rendit sipas kyçit" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Operacione" @@ -2745,7 +2742,7 @@ msgid "The row has been deleted" msgstr "rreshti u fshi" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Hiq" @@ -2772,30 +2769,30 @@ msgstr "Gjithsej" msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Shfaq skemën PDF" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Versioni i MySQL" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Lidhja nuk u gjet" @@ -2866,56 +2863,56 @@ msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." msgid "Javascript must be enabled past this point" msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Asnjë tregues i përcaktuar!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Tregues" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "I vetëm" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Komente" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Kyçi primar u eleminua" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Treguesi %s u eleminua" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Databazat" @@ -2925,7 +2922,7 @@ msgstr "Databazat" msgid "Server" msgstr "Serveri" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2938,105 +2935,105 @@ msgstr "Serveri" msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Shto" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacione" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Query nga shembull" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Të drejtat" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Përdorues" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binar" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Të ndryshueshmet" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Familje gërmash" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Gabim" @@ -3083,71 +3080,71 @@ msgstr "Asnjë tabelë" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Kërko në databazë" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Kërko në databazë" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %s u riemërtua %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3155,22 +3152,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funksioni" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Vlerë" @@ -3180,7 +3177,7 @@ msgstr "Vlerë" msgid "Table Search" msgstr "Kërko" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3315,14 +3312,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3579,8 +3576,8 @@ msgstr "Mirësevini tek %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3691,12 +3688,12 @@ msgstr "Tabela" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Të dhëna" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Mbi limit" @@ -3812,18 +3809,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "query SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3911,7 +3908,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3922,8 +3919,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "directory e upload të server-it web" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" @@ -4120,7 +4117,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4399,7 +4396,7 @@ msgid "Character set of the file" msgstr "Familja gërmave të file:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Formati" @@ -4721,7 +4718,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5991,7 +5988,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "query SQL" @@ -6304,23 +6301,23 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveri nuk përgjigjet" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6378,8 +6375,8 @@ msgstr "Krijo një faqe të re" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Emri" @@ -6500,8 +6497,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:285 @@ -6509,7 +6506,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Familja gërmave të file:" @@ -6989,8 +6986,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7066,7 +7063,7 @@ msgstr "Dërguar" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7140,7 +7137,7 @@ msgstr "Lloje MIME në dispozicion" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7351,8 +7348,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 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)." @@ -7517,77 +7514,77 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Për shkak të gjatësisë saj,
    kjo fushë nuk mund të ndryshohet " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Të dhëna të tipit binar - mos ndrysho" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "directory e upload të server-it web" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Shto një rresht të ri" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Mbrapa" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Shto një regjistrim të ri" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Kthehu mbrapa tek kjo faqe" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7615,7 +7612,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Dërgoje" @@ -7633,7 +7630,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Konfermo: " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Asnjë ndryshim" @@ -7889,7 +7886,7 @@ msgid "" msgstr "" "Ju lutem lexoni dokumentet mbi rifreskimin e tabelës suaj Column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Query SQL shtuar të preferuarve" @@ -7936,6 +7933,10 @@ msgstr "" msgid "no description" msgstr "asnjë përshkrim" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Asnjë zgjedhje" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7971,8 +7972,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "E ndryshueshme" @@ -7998,7 +7999,7 @@ msgstr "Çfarëdo përdorues" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Përdor fushë teksti" @@ -8029,10 +8030,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8043,7 +8044,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8059,7 +8060,7 @@ msgstr "Tabela %s u eleminua" msgid "Event %1$s has been created." msgstr "Tabela %s u eleminua" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8069,16 +8070,16 @@ msgstr "" msgid "Edit event" msgstr "Dërguar" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proceset" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8093,7 +8094,7 @@ msgstr "Lloji i Eksportit" msgid "Event type" msgstr "Lloji i Eksportit" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8128,13 +8129,13 @@ msgstr "Fund" msgid "On completion preserve" msgstr "Të shtuarat komplet" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8159,7 +8160,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8181,7 +8182,7 @@ msgstr "" msgid "Returns" msgstr "Opcione për tabelën" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8189,138 +8190,138 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabela %s u eleminua" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabela %s u eleminua" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Emrat e kollonave" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Krijimi" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Gjatësia/Set*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Ndysho emrin e databazës në" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Gjatësia/Set*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcione për tabelën" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Lloji i query" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8637,7 +8638,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8672,53 +8673,53 @@ msgstr "Kërko në databazë" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Zbato query SQL tek databaza %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Zbato query SQL tek databaza %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "Kalendari" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Mos e mbishkruaj këtë query nga jashtë dritares" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Tregoje përsëri këtë query" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Shfaq vetëm" @@ -8830,7 +8831,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Treguesi" @@ -8885,12 +8886,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primar" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Teksti komplet" @@ -8904,12 +8905,12 @@ msgstr "" msgid "after %s" msgstr "Mbas %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Shto një fushë të re" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8970,7 +8971,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Shfaq një lidhje për tek kjo figurë (download blob direkt, p.sh.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9170,8 +9171,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Përdorues" @@ -9297,17 +9298,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Asnjë databazë" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Transformo tabelën e renditur sipas" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9331,7 +9332,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9396,47 +9397,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Shiko relacionet" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksporto" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "tek query" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Riemërto tabelën në" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Emri i përdoruesit" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Krijo" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9616,13 +9617,13 @@ msgstr "" msgid "Files" msgstr "Fusha" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Shkurton (ndërpret) Queries e Shfaqura" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Shfaq të gjitha kërkesat" @@ -9638,7 +9639,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 #, fuzzy msgid "Information" msgstr "Informacione mbi Identifikimin" @@ -9668,11 +9669,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Aktivo Statistikat" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9936,7 +9937,7 @@ msgid "None" msgstr "Asnjë lloj" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Të drejta relative me tabelat" @@ -9953,7 +9954,7 @@ msgstr "Administrimi" msgid "Global privileges" msgstr "Të drejtat e përgjithshme" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Të drejta specifike të databazës" @@ -9974,7 +9975,7 @@ msgstr "Informacione mbi Identifikimin" msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalim" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10025,7 +10026,7 @@ msgstr "Përdoruesit e zgjedhur u hoqën me sukses." msgid "The privileges were reloaded successfully." msgstr "Të drejtat u përditësuan me sukses." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Ndrysho të drejtat" @@ -10040,7 +10041,7 @@ msgid "Export all" msgstr "Eksporto" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Çfarëdo" @@ -10062,120 +10063,120 @@ msgstr "Të drejtat" msgid "Users overview" msgstr "Paraqitja e përgjithshme e përdoruesve" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Heq përdoruesit e zgjedhur" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Hiqja të gjitha të drejtat aktive përdoruesve dhe pastaj eleminoi." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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ë " "drejtave të përdorura nga serveri nëse janë kryer ndryshime manuale. Në këtë " "rast, duhet të %srifreskoni të drejtat%s para se të vazhdoni." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Të drejtat relative të kollonave" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Shto të drejta tek databaza në vazhdim" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Shto të drejta tek tabela në vazhdim" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... mbaj të vjetrin." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... elemino të vjetrin nga tabela e përdoruesve." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... hiq të gjitha të drejtat nga i vjetri e pastaj eleminoje." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrollo të drejtat për databazën "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Përdoruesit që kanë hyrje tek "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globale" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "specifik i databazës" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10461,49 +10462,49 @@ msgstr "Shfaq tabelat" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "Shfaq tabelat" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacione" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Lloji i query" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Funksioni" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10511,118 +10512,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Instruksione" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ky server MySQL po punon që prej %s. U nis më %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Marrë" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Dërguar" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Përpjekje të dështuara" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Dështoi" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Komanda" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10630,78 +10631,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10709,7 +10710,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10717,42 +10718,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10760,33 +10761,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10795,243 +10796,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Familja gërmave të file:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11039,99 +11040,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11139,18 +11140,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11158,69 +11159,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Gjurmimi nuk është aktiv." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sht" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy msgid "Add chart" msgstr "Shto një fushë të re" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Rifresko" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Shto/Fshi kollonat e fushës" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11229,7 +11230,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11237,18 +11238,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11256,11 +11257,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11268,90 +11269,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Ndysho emrin e databazës në" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Zgjidh Tabelat" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Shto një përdorues të ri" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "query SQL" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Statistikat e rreshtave" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Zgjidh Tabelat" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Lloji i query" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11359,7 +11360,7 @@ msgid_plural "%d seconds" msgstr[0] "në sekondë" msgstr[1] "në sekondë" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12132,35 +12133,35 @@ msgstr "Kontrollo integritetin e informacioneve:" msgid "Showing tables" msgstr "Shfaq tabelat" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Hapësira e përdorur" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektiv" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistikat e rreshtave" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Gjatësia e rreshtit" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Madhësia e rreshtit" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12185,7 +12186,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12241,54 +12242,54 @@ msgstr "Një tregues u shtua tek %s" msgid "Show more actions" msgstr "Trego info mbi PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy msgid "Move columns" msgstr "Shto një fushë të re" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Shfaq për printim" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Shiko relacionet" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Propozo strukturën e tabelës" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy msgid "Add column" msgstr "Shto një fushë të re" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Në fund të tabelës" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Në fillim të tabelës" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Mbas %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Krijo një tregues tek  %s columns" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12809,8 +12810,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12938,8 +12939,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13769,8 +13770,8 @@ msgstr "" #~ "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." #~ msgid "Chart generated successfully." #~ msgstr "Të drejtat u përditësuan me sukses." diff --git a/po/sr.po b/po/sr.po index 33921fa31e..0b47d9f946 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:20+0200\n" "Last-Translator: Michal Čihař \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" -"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" +"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" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -39,53 +39,54 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Претраживање" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Крени" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Име кључа" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Опис" @@ -116,13 +117,13 @@ msgstr "Коментар базе: " msgid "Table comments" msgstr "Коментари табеле" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "Коментари табеле" msgid "Column" msgstr "Колона" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "Везе ка" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "Коментари" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Не" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "Не" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "Прикажи садржај (схему) базе" msgid "No tables found in database." msgstr "Табеле нису пронађене у бази." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Изабери све" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "ништа" @@ -322,12 +323,12 @@ msgstr "Додај ограничења" msgid "Switch to copied database" msgstr "Пребаци се на копирану базу" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Сортирање" @@ -353,17 +354,17 @@ msgstr "Уреди или извези релациону схему" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Табела" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Редова" @@ -378,21 +379,21 @@ msgstr "се користи" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Направљено" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Последња измена" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Последња провера" @@ -458,7 +459,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "или" @@ -503,61 +504,28 @@ msgstr "Изврши SQL упит" msgid "Access denied" msgstr "Приступ одбијен" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "бар једну од речи" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "све речи" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "тачан израз" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "као регуларни израз" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати претраге за \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s погодака унутар табеле %s" -msgstr[1] "%s погодака унутар табеле %s" -msgstr[2] "%s погодака унутар табеле %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Преглед" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Приказ података табеле" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Обриши" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -566,31 +534,64 @@ msgstr[0] "Укупно: %s погодака" msgstr[1] "Укупно: %s погодака" msgstr[2] "Укупно: %s погодака" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s погодака унутар табеле %s" +msgstr[1] "%s погодака унутар табеле %s" +msgstr[2] "%s погодака унутар табеле %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Преглед" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Приказ података табеле" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Обриши" + +#: db_search.php:362 msgid "Search in database" msgstr "Претраживање базе" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Речи или вредности које се траже (џокер: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Тражи:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Речи се одвајају размаком (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Унутар табела:" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -633,8 +634,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -642,7 +643,7 @@ msgstr "" msgid "View" msgstr "Поглед" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -652,98 +653,94 @@ msgstr "Репликација" msgid "Sum" msgstr "Укупно" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Означено:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Означи све" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "ниједно" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "За штампу" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Испразни" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Одбаци" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Провери табелу" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Оптимизуј табелу" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Поправи табелу" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Анализирај табелу" -#: db_structure.php:717 +#: db_structure.php:712 #, fuzzy msgid "Add prefix to table" msgstr "База не постоји" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Речник података" @@ -757,9 +754,9 @@ msgstr "Провери табелу" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "База података" @@ -778,17 +775,17 @@ msgstr "Направи" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Статус" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Акција" @@ -823,7 +820,7 @@ msgstr "Само структура" msgid "Untracked tables" msgstr "Провери табелу" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Провери табелу" @@ -976,11 +973,11 @@ msgstr "" #: import.php:86 #, 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 за начине превазилажења овог ограничења." +"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" +"sдокументацију%s за начине превазилажења овог ограничења." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1052,13 +1049,13 @@ msgstr "" "повећате временска ограничења у PHP-у" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL упит је успешно извршен" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" @@ -1156,8 +1153,8 @@ msgstr "Лозинка је празна!" msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1181,7 +1178,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1211,13 +1208,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Укупно" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1249,7 +1246,7 @@ msgstr "Избор сервера" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Процеси" @@ -1320,13 +1317,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "КБ" @@ -1388,7 +1385,7 @@ msgstr "" msgid "Bytes received" msgstr "Примљено" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Конекције" @@ -1429,11 +1426,11 @@ msgstr "%s табела" msgid "Questions" msgstr "Персијски" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Саобраћај" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1462,8 +1459,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "нема" @@ -1563,7 +1560,7 @@ msgstr "Опште особине релација" msgid "Current settings" msgstr "Опште особине релација" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1651,7 +1648,7 @@ msgstr "Објасни SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Време" @@ -1758,10 +1755,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Увоз" @@ -1819,9 +1816,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Откажи" @@ -1852,9 +1849,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "У реду" @@ -1960,7 +1957,7 @@ msgstr "Бришем %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -2002,8 +1999,8 @@ msgstr "SQL упит" msgid "No rows selected" msgstr "Нема одабраних редова" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Промени" @@ -2018,7 +2015,7 @@ msgid "%d is not valid row number." msgstr "%d није исправан број реда." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2589,16 +2586,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "у секунди" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "у минуту" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "на сат" @@ -2713,8 +2710,8 @@ msgstr "Сортирај по кључу" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Опције" @@ -2776,7 +2773,7 @@ msgid "The row has been deleted" msgstr "Ред је обрисан" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Обустави" @@ -2803,30 +2800,30 @@ msgstr "укупно" msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Веза није пронађена" @@ -2901,56 +2898,56 @@ msgstr "Колачићи (Cookies) морају у овом случају би msgid "Javascript must be enabled past this point" msgstr "Колачићи (Cookies) морају у овом случају бити активни." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Кључ није дефинисан!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Кључеви" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Јединствени" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Коментари" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Примарни кључ је обрисан" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Кључ %s је обрисан" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Базе" @@ -2960,7 +2957,7 @@ msgstr "Базе" msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2973,105 +2970,105 @@ msgstr "Сервер" msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Нови запис" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операције" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Окидачи" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Табела је изгледа празна!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "База је изгледа празна!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Упит по примеру" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Привилегије" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Рутине" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Догађаји" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дизајнер" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Корисник" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Бинарни дневник" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Променљиве" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Кодне стране" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Складиштења" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Грешка" @@ -3121,74 +3118,74 @@ msgstr "Нема табела" msgid "There are no recent tables" msgstr "Провери табелу" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Нема детаљнијих информација о статусу за овај погон складиштења." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s је доступан на овом MySQL серверу." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s је онемогућен на овом MySQL серверу." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Овај MySQL сервер не подржава %s погон складиштења." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Прикажи статус подређених сервера" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Претраживање базе" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Није пронађена тема %s!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Неисправна база података" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Неисправан назив табеле" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Грешка при преименовању табеле %1$s у %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Табели %s промењено име у %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3196,22 +3193,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Функција" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Оператор" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Вредност" @@ -3221,7 +3218,7 @@ msgstr "Вредност" msgid "Table Search" msgstr "Претраживање" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3357,14 +3354,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3623,8 +3620,8 @@ msgstr "Добродошли на %s" #: libraries/auth/config.auth.lib.php:98 #, 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 да бисте је направили." @@ -3737,12 +3734,12 @@ msgstr "Табеле" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Подаци" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Прекорачење" @@ -3862,18 +3859,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL упит" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3965,7 +3962,7 @@ msgstr "Ова функционалност %s је погођена позна msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3976,8 +3973,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" @@ -4173,7 +4170,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4456,7 +4453,7 @@ msgid "Character set of the file" msgstr "Карактер сет датотеке:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Формат" @@ -4781,7 +4778,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Сервери" @@ -6077,7 +6074,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL упит" @@ -6391,7 +6388,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6399,17 +6396,17 @@ msgid "" "configured)." msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер не одговара" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6470,8 +6467,8 @@ msgstr "Направи табелу" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Име" @@ -6598,8 +6595,8 @@ msgstr "" #| "will be kept as is." 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, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -6610,7 +6607,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Карактер сет датотеке:" @@ -7125,8 +7122,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7201,7 +7198,7 @@ msgstr "Догађаји" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7278,7 +7275,7 @@ msgstr "Доступни MIME-типови" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Домаћин" @@ -7487,8 +7484,8 @@ msgstr "Тип извоза" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." @@ -7657,81 +7654,81 @@ msgstr "Мод SQL компатибилности" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Сакриј" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Бинарни" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "ause of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Због њехове величине, поље
    можда нећете моћи да измените" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Бинарни - не мењај" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "директоријум за слање веб сервера" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "и онда" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Уреди следећи ред" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7759,7 +7756,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Пошаљи" @@ -7779,7 +7776,7 @@ msgstr "Додај ново поље" msgid "Do you really want to execute the following query?" msgstr "Да ли стварно хоћете да " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Нема измена" @@ -8034,7 +8031,7 @@ msgid "" msgstr "" "Молимо погледајте у документацији како се ажурира табела Column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Запамћен SQL-упит" @@ -8081,6 +8078,10 @@ msgstr "" msgid "no description" msgstr "нема описа" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "ниједно" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -8118,8 +8119,8 @@ msgstr "Прикажи статус подређених сервера" msgid "Slave status" msgstr "Прикажи статус подређених сервера" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Променљива" @@ -8144,7 +8145,7 @@ msgstr "Било који корисник" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Користи текст поље" @@ -8175,10 +8176,10 @@ msgid "Generate Password" msgstr "Направи лозинку" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8189,7 +8190,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8205,7 +8206,7 @@ msgstr "Табела %s је одбачена" msgid "Event %1$s has been created." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8216,16 +8217,16 @@ msgstr "" msgid "Edit event" msgstr "Догађаји" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процеси" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8240,7 +8241,7 @@ msgstr "Врста догађаја" msgid "Event type" msgstr "Врста догађаја" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8273,13 +8274,13 @@ msgstr "Крај" msgid "On completion preserve" msgstr "Комплетан INSERT (са именима поља)" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8304,7 +8305,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8326,7 +8327,7 @@ msgstr "" msgid "Returns" msgstr "Повратни тип" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8334,125 +8335,125 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Директне везе" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Дужина/Вредност*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Додај ново поље" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Уклони базу" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Повратни тип" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Дужина/Вредност*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опције табеле" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Врста упита" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8460,19 +8461,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозвољава извршавање сачуваних рутина." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8799,7 +8800,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Непознат језик: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8834,53 +8835,53 @@ msgstr "Претраживање базе" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Изврши SQL упит(е) на серверу %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Изврши SQL упит(е) на бази %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "Календар" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замени постојеће запамћене упите истог имена" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Не преписуј овај упит изван прозора" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Граничник" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Прикажи поново овај упит" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Види само" @@ -8988,7 +8989,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Кључ" @@ -9043,12 +9044,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Примарни" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Текст кључ" @@ -9062,13 +9063,13 @@ msgstr "" msgid "after %s" msgstr "После %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додај %s поља" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9130,7 +9131,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Приказује линк ка овој снимци (нпр. директно преузимање из BLOB-а)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9344,8 +9345,8 @@ msgid "Protocol version" msgstr "Верзија протокола" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Корисник" @@ -9476,17 +9477,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "База не постоји" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "назив табеле" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9511,7 +9512,7 @@ msgstr "Прикажи/сакриј мени с леве стране" msgid "Save position" msgstr "Сачувај позицију" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Направи релацију" @@ -9575,48 +9576,48 @@ msgstr "Сакриј/прикажи табеле без релација" msgid "Number of tables" msgstr "Број табела" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Обриши релацију" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Релација обрисана" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Извоз" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "у упиту" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Промени име табеле у " -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Име корисника" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Направи" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9795,13 +9796,13 @@ msgstr "Изаберите бинарни дневник за преглед" msgid "Files" msgstr "Датотеке" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Прикажи скраћене упите" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Прикажи комплетне упите" @@ -9817,7 +9818,7 @@ msgstr "Позиција" msgid "Original position" msgstr "Оригинална позиција" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Информације" @@ -9847,11 +9848,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Укључи статистике" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10105,7 +10106,7 @@ msgid "None" msgstr "нема" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" @@ -10122,7 +10123,7 @@ msgstr "Администрација" msgid "Global privileges" msgstr "Глобалне привилегије" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" @@ -10142,7 +10143,7 @@ msgstr "Подаци о пријави" msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10193,7 +10194,7 @@ msgstr "Изабрани корисници су успешно обрисани msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Промени привилегије" @@ -10208,7 +10209,7 @@ msgid "Export all" msgstr "Извоз" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Било који" @@ -10230,120 +10231,120 @@ msgstr "Привилегије" msgid "Users overview" msgstr "Преглед корисника" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Омогући" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Уклони изабране кориснике" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Обустави све активне привилегије корисника и затим их обриши." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 пре него што наставите." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Привилегије везане за колоне" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Додај привилегије на следећој бази" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Додај привилегије на следећој табели" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Промени информације о пријави / Копирај корисника" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Направи новог корисника са истим привилегијама и ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... сачувај старе." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... обриши старе из табела корисника." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... обустави све привилегије старог корисника и затим га обриши." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... обриши старог из табеле корисника и затим поново учитај привилегије." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "База за корисника" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Направи базу са истим именом и додај све привилегије" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегије за базу "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Корисници који имају приступ "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "глобално" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Специфично за базу" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "џокер" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10628,51 +10629,51 @@ msgstr "Прикажи отворене табеле" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Прикажи отворене табеле" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релације" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Врста упита" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Функције" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10680,57 +10681,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Овај MySQL сервер ради већ %s. Покренут је %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "Репликација" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10738,47 +10739,47 @@ msgstr "" "На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " "те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Примљено" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Послато" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "макс. истовремених веза" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Неуспелих покушаја" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Прекинуто" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Наредба" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10788,16 +10789,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10809,11 +10810,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10821,7 +10822,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10829,7 +10830,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10837,23 +10838,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10863,7 +10864,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10873,7 +10874,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10881,7 +10882,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10891,7 +10892,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10899,7 +10900,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10911,7 +10912,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10923,35 +10924,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Број слободних страна." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10961,7 +10962,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10973,11 +10974,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10985,7 +10986,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10993,11 +10994,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11005,7 +11006,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11019,55 +11020,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11075,35 +11076,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Број направљених страна." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11112,51 +11113,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Број записаних страна." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11164,7 +11165,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11172,7 +11173,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11182,17 +11183,17 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Формат датотека за увоз" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11202,26 +11203,26 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11231,17 +11232,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11249,39 +11250,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11293,7 +11294,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11301,19 +11302,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11321,11 +11322,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11333,7 +11334,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11341,15 +11342,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11357,11 +11358,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11369,12 +11370,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11384,23 +11385,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11412,7 +11413,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11422,11 +11423,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11438,69 +11439,69 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кеш кључева" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy msgid "Start Monitor" msgstr "Статус" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Додај ново поље" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додај/обриши колону" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11509,7 +11510,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11517,18 +11518,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11536,11 +11537,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11548,92 +11549,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Уклони базу" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Изабери табеле" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Неисправан назив табеле" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Додај новог корисника" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL упит" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Статистике реда" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Изабери све" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Врста упита" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11642,7 +11643,7 @@ msgstr[0] "у секунди" msgstr[1] "у секунди" msgstr[2] "у секунди" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12421,35 +12422,35 @@ msgstr "Провери референцијални интегритет:" msgid "Showing tables" msgstr "Прикажи табеле" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Заузеће" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Ефективне" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Статистике реда" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "динамички" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Дужина реда" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Величина реда" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12474,7 +12475,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12533,56 +12534,56 @@ msgstr "Кључ је управо додат %s" msgid "Show more actions" msgstr "Прикажи информације о PHP-у" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Додај %s поља" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "За штампу" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Релациони поглед" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Предложи структуру табеле" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Додај %s поља" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "На крају табеле" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "На почетку табеле" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "После %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Направи кључ на %s колона" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -13106,8 +13107,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13241,8 +13242,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/sr@latin.po b/po/sr@latin.po index 14825acbec..dd779195b7 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:19+0200\n" "Last-Translator: Michal Čihař \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" -"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" +"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" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -39,53 +39,54 @@ msgstr "" "zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Pretraživanje" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Opis" @@ -116,13 +117,13 @@ msgstr "Komentar baze: " msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "Komentari tabele" msgid "Column" msgstr "Kolona" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "Komentari" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "Ne" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "Prikaži sadržaj (shemu) baze" msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "ništa" @@ -322,12 +323,12 @@ msgstr "Dodaj ograničenja" msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Sortiranje" @@ -353,17 +354,17 @@ msgstr "Uredi ili izvezi relacionu shemu" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Redova" @@ -378,21 +379,21 @@ msgstr "se koristi" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Poslednja izmena" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Poslednja provera" @@ -457,7 +458,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ili" @@ -498,61 +499,28 @@ msgstr "Izvrši SQL upit" msgid "Access denied" msgstr "Pristup odbijen" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "bar jednu od reči" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "sve reči" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "tačan izraz" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "kao regularni izraz" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s pogodaka unutar tabele %s" -msgstr[1] "%s pogodaka unutar tabele %s" -msgstr[2] "%s pogodaka unutar tabele %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Pregled" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Prikaz podataka tabele" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Obriši" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -560,31 +528,64 @@ msgstr[0] "Ukupno: %s pogodaka" msgstr[1] "Ukupno: %s pogodak" msgstr[2] "Ukupno: %s pogodaka" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s pogodaka unutar tabele %s" +msgstr[1] "%s pogodaka unutar tabele %s" +msgstr[2] "%s pogodaka unutar tabele %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Pregled" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Prikaz podataka tabele" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Obriši" + +#: db_search.php:362 msgid "Search in database" msgstr "Pretraživanje baze" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Reči ili vrednosti koje se traže (džoker: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Traži:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Reči se odvajaju razmakom (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tabela:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Unutar kolone::" @@ -625,8 +626,8 @@ msgstr "Praćenje nije aktivno." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -634,7 +635,7 @@ msgstr "" msgid "View" msgstr "Pogled" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -644,98 +645,94 @@ msgstr "Replikacija" msgid "Sum" msgstr "Ukupno" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "nijedno" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Odbaci" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Proveri tabelu" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimizuj tabelu" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:717 +#: db_structure.php:712 #, fuzzy msgid "Add prefix to table" msgstr "Baza ne postoji" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Zameni podatke u tabeli sa podacima iz datoteke" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Zameni podatke u tabeli sa podacima iz datoteke" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -749,9 +746,9 @@ msgstr "Proveri tabelu" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza podataka" @@ -770,17 +767,17 @@ msgstr "Napravi" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Akcija" @@ -815,7 +812,7 @@ msgstr "Samo struktura" msgid "Untracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Proveri tabelu" @@ -968,11 +965,11 @@ msgstr "" #: import.php:86 #, 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 "" -"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " -"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." +"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %" +"sdokumentaciju%s za načine prevazilaženja ovog ograničenja." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1044,13 +1041,13 @@ msgstr "" "povećate vremenska ograničenja u PHP-u" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazad" @@ -1148,8 +1145,8 @@ msgstr "Lozinka je prazna!" msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1173,7 +1170,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1203,13 +1200,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1241,7 +1238,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Procesi" @@ -1312,13 +1309,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1380,7 +1377,7 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Konekcije" @@ -1422,11 +1419,11 @@ msgstr "%s tabela" msgid "Questions" msgstr "Persijski" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1455,8 +1452,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "nema" @@ -1556,7 +1553,7 @@ msgstr "Opšte osobine relacija" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1644,7 +1641,7 @@ msgstr "Objasni SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Vreme" @@ -1751,10 +1748,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" @@ -1812,9 +1809,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Otkaži" @@ -1845,9 +1842,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "U redu" @@ -1953,7 +1950,7 @@ msgstr "Brišem %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1995,8 +1992,8 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Promeni" @@ -2011,7 +2008,7 @@ msgid "%d is not valid row number." msgstr "%d nije ispravan broj reda." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2582,16 +2579,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "u sekundi" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "u minutu" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "na sat" @@ -2708,8 +2705,8 @@ msgstr "Sortiraj po ključu" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Opcije" @@ -2771,7 +2768,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Obustavi" @@ -2798,30 +2795,30 @@ msgstr "ukupno" msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Napravi relaciju" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2896,56 +2893,56 @@ msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." msgid "Javascript must be enabled past this point" msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Ključ nije definisan!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Ključevi" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Komentari" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Primarni ključ je obrisan" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Ključ %s je obrisan" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Baze" @@ -2955,7 +2952,7 @@ msgstr "Baze" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2968,105 +2965,105 @@ msgstr "Server" msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Okidači" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabela je izgleda prazna!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Baza je izgleda prazna!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegije" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Događaji" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dizajner" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Korisnik" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binarni dnevnik" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Promenljive" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Skladištenja" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Greška" @@ -3116,74 +3113,74 @@ msgstr "Nema tabela" msgid "There are no recent tables" msgstr "Proveri tabelu" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Nema detaljnijih informacija o statusu za ovaj pogon skladištenja." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je dostupan na ovom MySQL serveru." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s je onemogućen na ovom MySQL serveru." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Prikaži status podređenih servera" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Nije pronađena tema %s!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Neispravna baza podataka" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Neispravan naziv tabele" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Greška pri preimenovanju tabele %1$s u %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Tabeli %s promenjeno ime u %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3191,22 +3188,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funkcija" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Vrednost" @@ -3216,7 +3213,7 @@ msgstr "Vrednost" msgid "Table Search" msgstr "Pretraživanje" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3352,14 +3349,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3618,8 +3615,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." @@ -3732,12 +3729,12 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Podaci" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Prekoračenje" @@ -3857,18 +3854,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL upit" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3960,7 +3957,7 @@ msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3971,8 +3968,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "direktorijum za slanje veb servera " -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" @@ -4168,7 +4165,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4452,7 +4449,7 @@ msgid "Character set of the file" msgstr "Karakter set datoteke:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4777,7 +4774,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Serveri" @@ -6071,7 +6068,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL upit" @@ -6385,7 +6382,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6393,17 +6390,17 @@ msgid "" "configured)." msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server ne odgovara" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6464,8 +6461,8 @@ msgstr "Napravi tabelu" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Ime" @@ -6592,8 +6589,8 @@ msgstr "" #| "will be kept as is." 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 "" "Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " @@ -6604,7 +6601,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Karakter set datoteke:" @@ -7119,8 +7116,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7195,7 +7192,7 @@ msgstr "Događaji" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7268,7 +7265,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Domaćin" @@ -7477,8 +7474,8 @@ msgstr "Tip izvoza" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -7647,81 +7644,81 @@ msgstr "Mod SQL kompatibilnosti" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Sakrij" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarni" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "ause of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Zbog njehove veličine, polje
    možda nećete moći da izmenite" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binarni - ne menjaj" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "direktorijum za slanje veb servera" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Ponovo pokreni unošenje sa %s redova" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "i onda" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 #, fuzzy msgid "Show insert query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Uredi sledeći red" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7749,7 +7746,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Pošalji" @@ -7767,7 +7764,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Da li stvarno hoćete da " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Nema izmena" @@ -8022,7 +8019,7 @@ msgid "" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Zapamćen SQL-upit" @@ -8069,6 +8066,10 @@ msgstr "" msgid "no description" msgstr "nema opisa" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "nijedno" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -8106,8 +8107,8 @@ msgstr "Prikaži status podređenih servera" msgid "Slave status" msgstr "Prikaži status podređenih servera" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Promenljiva" @@ -8132,7 +8133,7 @@ msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Koristi tekst polje" @@ -8163,10 +8164,10 @@ msgid "Generate Password" msgstr "Napravi lozinku" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8177,7 +8178,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8193,7 +8194,7 @@ msgstr "Tabela %s je odbačena" msgid "Event %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8204,16 +8205,16 @@ msgstr "" msgid "Edit event" msgstr "Događaji" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8228,7 +8229,7 @@ msgstr "Vrsta događaja" msgid "Event type" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8263,13 +8264,13 @@ msgstr "Kraj" msgid "On completion preserve" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8294,7 +8295,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8316,7 +8317,7 @@ msgstr "" msgid "Returns" msgstr "Povratni tip" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8324,123 +8325,123 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Neispravan indeks servera: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Direktne veze" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Dužina/Vrednost*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Ukloni bazu" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Povratni tip" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dužina/Vrednost*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tabele" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8448,19 +8449,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8787,7 +8788,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Nepoznat jezik: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8822,53 +8823,53 @@ msgstr "Pretraživanje baze" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Izvrši SQL upit(e) na serveru %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Izvrši SQL upit(e) na bazi %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "Kalendar" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zameni postojeće zapamćene upite istog imena" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepisuj ovaj upit izvan prozora" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Graničnik" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Prikaži ponovo ovaj upit" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Vidi samo" @@ -8977,7 +8978,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Ključ" @@ -9032,12 +9033,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primarni" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Tekst ključ" @@ -9051,13 +9052,13 @@ msgstr "" msgid "after %s" msgstr "Posle %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9119,7 +9120,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Prikazuje link ka ovoj snimci (npr. direktno preuzimanje iz BLOB-a)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9334,8 +9335,8 @@ msgid "Protocol version" msgstr "Verzija protokola" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Korisnik" @@ -9467,17 +9468,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Baza ne postoji" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "naziv tabele" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9502,7 +9503,7 @@ msgstr "Prikaži/sakrij meni s leve strane" msgid "Save position" msgstr "Sačuvaj poziciju" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Napravi relaciju" @@ -9566,48 +9567,48 @@ msgstr "Sakrij/prikaži tabele bez relacija" msgid "Number of tables" msgstr "Broj tabela" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Obriši relaciju" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relacija obrisana" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Izvoz" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "u upitu" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Promeni ime tabele u " -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Ime korisnika" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Napravi" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9786,13 +9787,13 @@ msgstr "Izaberite binarni dnevnik za pregled" msgid "Files" msgstr "Datoteke" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -9808,7 +9809,7 @@ msgstr "Pozicija" msgid "Original position" msgstr "Originalna pozicija" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Informacije" @@ -9838,11 +9839,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Uključi statistike" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10096,7 +10097,7 @@ msgid "None" msgstr "nema" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" @@ -10113,7 +10114,7 @@ msgstr "Administracija" msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" @@ -10133,7 +10134,7 @@ msgstr "Podaci o prijavi" msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10184,7 +10185,7 @@ msgstr "Izabrani korisnici su uspešno obrisani." msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Promeni privilegije" @@ -10199,7 +10200,7 @@ msgid "Export all" msgstr "Izvoz" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Bilo koji" @@ -10221,120 +10222,120 @@ msgstr "Privilegije" msgid "Users overview" msgstr "Pregled korisnika" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na sledećoj bazi" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Pre džokera _ i % treba staviti znak \\ ako ih koristite samostalno" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... obriši stare iz tabela korisnika." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Baza za korisnika" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Proveri privilegije za bazu "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "globalno" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "džoker" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10619,51 +10620,51 @@ msgstr "Prikaži otvorene tabele" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Prikaži otvorene tabele" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vrsta upita" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funkcije" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10671,57 +10672,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10729,47 +10730,47 @@ msgstr "" "Na zaposlenom serveru brojači bajtova mogu da se preliju (overrun), tako da " "te statistike, onako kako ih prijavljuje MySQL server, mogu biti netačne." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Primljeno" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Poslato" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "maks. istovremenih veza" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Naredba" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10779,16 +10780,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10800,11 +10801,11 @@ msgstr "" "povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu " "bazirane u memoriji umesto na disku." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10812,7 +10813,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10820,7 +10821,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10828,23 +10829,23 @@ msgstr "" "Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad " "kojom se koristi INSERT DELAYED dobija svoju nit." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10854,7 +10855,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10864,7 +10865,7 @@ msgstr "" "može značiti da server radi puno punih skeniranja indeksa; na primer SELECT " "kol1 FROM nešto, pod pretpostavkom da je kol1 indeksirano." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10872,7 +10873,7 @@ msgstr "" "Broj zahteva za čitanje reda zasnovanih na ključu. Ako je ovaj broj visok, " "to je dobar pokazatelj da su vaši upiti i tabele propisno indeksirani." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10882,7 +10883,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10890,7 +10891,7 @@ msgstr "" "Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda " "čitanja se uglavnom koristi za optimizaciju ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10902,7 +10903,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10914,35 +10915,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Broj strana u ostavi bafera za koje je traženo da budu očišćene." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10952,7 +10953,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10964,11 +10965,11 @@ msgstr "" "se takođe može izračunati i na sledeći način Innodb_buffer_pool_pages_total " "- Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10976,7 +10977,7 @@ msgstr "" "Broj „nasumičnih“ pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "upit treba da skenira veliki deo tabele ali nasumičnim redosledom." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10984,11 +10985,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10996,7 +10997,7 @@ msgstr "" "Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera " "te je morao da radi čitanje pojedinačne strane." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11010,55 +11011,55 @@ msgstr "" "dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako " "treba, ova vrednost vi trebalo da je niska." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11066,35 +11067,35 @@ msgstr "" "Broj čekanja koja smo imali zato što je bafer dnevnika bio premali te smo " "morali da sačekamo da bude očišćen pre nastavka." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11103,52 +11104,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Broj puta kada se morala čekati brava za red." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11156,7 +11157,7 @@ msgstr "" "Broj blokova ključeva u kešu ključeva koji su izmenjeni ali još nisu poslati " "na disk. Ovo je ranije bilo poznato kao Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11164,7 +11165,7 @@ msgstr "" "Broj neiskorišćenih blokova u kešu ključeva. Ovu vrednost možete da " "koristite da utvrdite koliki deo keša ključeva je u upotrebi." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11174,17 +11175,17 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Format datoteka za uvoz" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahteva za čitanje bloka ključeva iz keša." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11194,26 +11195,26 @@ msgstr "" "je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša " "se može izračunati kao Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahteva za upisivanje bloka ključeva u keš." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih upisa bloka ključeva na disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11223,17 +11224,17 @@ msgstr "" "upita. Korisno za upoređivanje cene različitih planova upita za isti upit. " "Podrazumevana vrednost 0 znači da još nije bio kompajliran nijedan upit." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redova u INSERT DELAYED redovima čekanja koji čekaju upisivanje." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11241,39 +11242,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih tokova (koristi se prvenstveno za vođenje dnevnika (logging))." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11285,7 +11286,7 @@ msgstr "" "keša za upite. Keš za upite koristi strategiju najduže nekorišćenog (en: " "least recently used , LRU) da bi odlučio koje upite da ukloni iz keša." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11293,19 +11294,19 @@ msgstr "" "Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog " "podešavanja query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11313,11 +11314,11 @@ msgstr "" "Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi " "pažljivo da proverite indekse vaših tabela." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Broj spojeva koji su koristili pretragu opsega na referentnoj tabeli." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11326,7 +11327,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11334,15 +11335,15 @@ msgstr "" "Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično " "čak ni kada je ovo veliko)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Broj privremenih tabela trenutno otvorenih od strane pomoćne SQL niti." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11350,11 +11351,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ovo je ON ako je ovaj server pomoćni koji je povezan na glavni." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11362,12 +11363,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Broj upita za koje je trebalo više od long_query_time sekudni." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11377,23 +11378,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Broj puta kada je brava za tabelu odmah dobavljena." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11405,7 +11406,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11415,11 +11416,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11431,70 +11432,70 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Praćenje nije aktivno." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Dodaj %s polja" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Osveži" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11503,7 +11504,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11511,18 +11512,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11530,11 +11531,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11542,92 +11543,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Ukloni bazu" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izaberi tabele" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Neispravan naziv tabele" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Statistike reda" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Izaberi tabele" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11636,7 +11637,7 @@ msgstr[0] "u sekundi" msgstr[1] "u sekundi" msgstr[2] "u sekundi" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12412,35 +12413,35 @@ msgstr "Proveri referencijalni integritet:" msgid "Showing tables" msgstr "Prikaži tabele" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Zauzeće" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Efektivne" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Statistike reda" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Dužina reda" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Veličina reda" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12465,7 +12466,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12522,56 +12523,56 @@ msgstr "Ključ je upravo dodat %s" msgid "Show more actions" msgstr "Prikaži informacije o PHP-u" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Dodaj %s polja" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Za štampu" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Relacioni pogled" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s polja" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Na kraju tabele" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Posle %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Napravi ključ na %s kolona" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -13097,8 +13098,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13232,8 +13233,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/sv.po b/po/sv.po index 502212eb63..d7fffda691 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-22 13:11+0200\n" "Last-Translator: ProUser \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "fönstret, eller så är din webbläsares säkerhetsinställningar konfigurerade " "för att blockera flerfönster uppdateringar." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Sök" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Kör" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Nyckelnamn" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Beskrivning" @@ -117,13 +118,13 @@ msgstr "Databaskommentar" msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Tabellkommentarer" msgid "Column" msgstr "Kolumn" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Länkar till" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Kommentarer" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nej" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Nej" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Visa dump (schema) av databasen" msgid "No tables found in database." msgstr "Inga tabeller funna i databasen." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Välj alla" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Avmarkera alla" @@ -321,12 +322,12 @@ msgstr "Lägg till restriktioner" msgid "Switch to copied database" msgstr "Byt till den kopierade databasen" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Kollationering" @@ -348,17 +349,17 @@ msgstr "Editera eller exportera relationsschema" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabell" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Rader" @@ -373,21 +374,21 @@ msgstr "används" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Skapande" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Senaste uppdatering" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Senaste kontroll" @@ -450,7 +451,7 @@ msgid "Del" msgstr "Ta bort" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Eller" @@ -491,85 +492,87 @@ msgstr "Skicka fråga" msgid "Access denied" msgstr "Åtkomst nekad" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "minst ett av orden" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "alla ord" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "den exakta frasen" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "som reguljärt uttryck" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Sök resultat för \"%s\"%s:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%1$s träff i tabell %2$s" -msgstr[1] "%1$s träffar i tabell %2$s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Bläddra" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Ta bort resultat som matchar %s tabellen?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Radera" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totalt: %s träff" msgstr[1] "Totalt: %s träffar" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%1$s träff i tabell %2$s" +msgstr[1] "%1$s träffar i tabell %2$s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Bläddra" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Ta bort resultat som matchar %s tabellen?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Radera" + +#: db_search.php:362 msgid "Search in database" msgstr "Sök i databas" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller värden att söka efter (jokertecken: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Hitta:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Ord separeras av ett mellanslag (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Inuti tabeller:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Inuti kolumnen:" @@ -608,8 +611,8 @@ msgstr "Spårning är inaktiv." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -617,7 +620,7 @@ msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." msgid "View" msgstr "Vy" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -627,93 +630,89 @@ msgstr "Replikering" msgid "Sum" msgstr "Summa" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s är standardmotorn för denna MySQL server." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Med markerade:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Markera alla" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Avmarkera alla" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Kontrollera tabeller med overhead" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportera" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Töm" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Radera" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Kontrollera tabell" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Optimera tabell" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Reparera tabell" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Analysera tabell" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Lägg till prefix till tabellen" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Ersätt tabellprefix" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopiera tabell med prefix" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Datalexikon" @@ -726,9 +725,9 @@ msgstr "Spårade tabeller" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databas" @@ -745,17 +744,17 @@ msgstr "Skapad" msgid "Updated" msgstr "Uppdaterad" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Status" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Åtgärd" @@ -787,7 +786,7 @@ msgstr "Ögonblicksbild på strukturen" msgid "Untracked tables" msgstr "Ej spårade tabeller" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Spåra tabell" @@ -924,8 +923,8 @@ msgstr "" #: import.php:86 #, 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." @@ -1002,13 +1001,13 @@ msgstr "" "tidsbegränsningar." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-fråga utfördes korrekt" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Föregående" @@ -1092,8 +1091,8 @@ msgstr "Lösenordet saknas!" msgid "The passwords aren't the same!" msgstr "Lösenorden överensstämmer inte!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Lägg till en användare" @@ -1111,7 +1110,7 @@ msgid "Close" msgstr "Stäng" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1138,13 +1137,13 @@ msgstr "Statisk data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Annan" @@ -1174,7 +1173,7 @@ msgstr "Server trafik (i Kb)" msgid "Connections since last refresh" msgstr "Anslutningar sedan senaste uppdatering" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Processer" @@ -1238,13 +1237,13 @@ msgstr "System swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "Mb" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "kB" @@ -1296,7 +1295,7 @@ msgstr "Antal bitar som skickats" msgid "Bytes received" msgstr "Antal mottagna bital" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Anslutningar" @@ -1335,11 +1334,11 @@ msgstr "%d tabell(er)" msgid "Questions" msgstr "Frågor" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Inställningar" @@ -1362,8 +1361,8 @@ msgstr "Lägg till minst en variabel till serien" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Inget" @@ -1463,7 +1462,7 @@ msgstr "Ändra inställningar" msgid "Current settings" msgstr "Nuvarande inställningar" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Diagramtitel" @@ -1546,7 +1545,7 @@ msgstr "Förklara utdata" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Tid" @@ -1640,10 +1639,10 @@ msgstr "" "Misslyckades skapa diagrammets rutnät med den importerade configurationen. " "Återställer till ursprunglig konfiguration ..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importera" @@ -1691,9 +1690,9 @@ msgstr "Använd variabel / formel" msgid "Test" msgstr "Test" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Avbryt" @@ -1721,9 +1720,9 @@ msgstr "Tar bort kolumn" msgid "Adding Primary Key" msgstr "Lägger till primär nyckel" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1800,7 +1799,7 @@ 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:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" @@ -1840,8 +1839,8 @@ msgstr "Visa frågerutan" msgid "No rows selected" msgstr "Inga rader valda" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Ändra" @@ -1856,7 +1855,7 @@ msgid "%d is not valid row number." msgstr "%d är inte ett giltigt radnummer." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2359,16 +2358,16 @@ msgstr "Oväntade tecken på rad %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Oväntat tecken på rad %1$s. Förväntad tab, men fann \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "per sekund" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "per minut" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "per timme" @@ -2468,8 +2467,8 @@ msgstr "Sortera efter nyckel" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Alternativ" @@ -2522,7 +2521,7 @@ msgid "The row has been deleted" msgstr "Raden har raderats" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Döda" @@ -2551,27 +2550,27 @@ msgstr "totalt" msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig version (med fullständiga texter)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Visa diagram" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "Visualisera GIS-data" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Skapa vy" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Länken hittades inte" @@ -2643,46 +2642,46 @@ msgstr "Kakor (cookies) måste tillåtas för att gå vidare." msgid "Javascript must be enabled past this point" msgstr "Javascript måste vara aktiverat efter detta" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Inga index är definierade!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Index" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Packad" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Den primära nyckeln har tagits bort" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Index %s har tagits bort" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2691,9 +2690,9 @@ msgstr "" "Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas " "bort." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Databaserna" @@ -2703,7 +2702,7 @@ msgstr "Databaserna" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2716,102 +2715,102 @@ msgstr "Server" msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Lägg till" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Spårning" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Trigger" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tabellen verkar vara tom!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Databasen verkar vara tom!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Fråga" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegier" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Händelser" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Användarna" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synkronisera" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binär logg" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Teckenuppsättningar" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Insticksprogram" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motorer" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fel" @@ -2853,65 +2852,65 @@ msgstr "De senaste tabellerna" msgid "There are no recent tables" msgstr "Det finns inga nya tabeller" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s är tillgänglig på denna MySQL-server." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s har inaktiverats på denna MySQL-server." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "Okänd tabellstatus: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Källdatabas `%s` hittades inte!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Måldatabas `%s` hittades inte!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Ogiltig databas" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Ogiltigt tabellnamn" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabell %1$s har döpts om till %2$s." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Kunde inte spara UI inställningarna för tabellen" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2920,7 +2919,7 @@ msgstr "" "Misslyckades med att rensa UI inställningarna (se $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2931,22 +2930,22 @@ msgstr "" "efter att du uppdaterar denna sida. Kontrollera om tabellens struktur har " "förändrats." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funktion" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Aktör" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Värde" @@ -2954,7 +2953,7 @@ msgstr "Värde" msgid "Table Search" msgstr "Tabellsök" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Redigera / Infoga" @@ -3094,16 +3093,16 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Ett litet flyttal. Tillåtna värden är: 3.402823466E+38 till-1.175494351E-38, " "0, och 1.175494351E-38 till 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Ett dubbel-precision flyttal. Tillåtna värden är: 1.7976931348623157E+308 " @@ -3400,11 +3399,11 @@ msgstr "Välkommen till %s" #: libraries/auth/config.auth.lib.php:98 #, 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:110 msgid "" @@ -3516,12 +3515,12 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Outnyttjat" @@ -3632,18 +3631,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-fråga" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3731,7 +3730,7 @@ msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" msgid "Click to toggle" msgstr "Klicka för att växla" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Gå igenom din dator:" @@ -3741,8 +3740,8 @@ msgstr "Gå igenom din dator:" msgid "Select from the web server upload directory %s:" msgstr "Välj katalog att ladda upp till från web-server listningen %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" @@ -3928,7 +3927,7 @@ msgstr "Återställ standardvärde" msgid "Allow users to customize this value" msgstr "Tillåt användare att anpassa detta värde" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4219,7 +4218,7 @@ msgid "Character set of the file" msgstr "Filens teckenuppsättning" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4517,7 +4516,7 @@ msgstr "Navigeringsram" msgid "Customize appearance of the navigation frame" msgstr "Anpassa navigeringsramens utseende" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Servrar" @@ -5848,7 +5847,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "Definierar om frågerutan ska stanna på skärmen efter inskickandet" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Behåll sökrutan" @@ -6178,7 +6177,7 @@ msgstr "%s tillägg saknas. Vänligen kontrollera din PHP konfiguration." msgid "possible deep recursion attack" msgstr "möjlig djupgående rekursiv attack" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6186,15 +6185,15 @@ msgstr "" "Servern svarar inte (eller den lokala serverns socket är inte korrekt " "konfigurerad)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Servern svarar inte." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Kontrollera privilegierna för katalogen som innehåller databasen." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Detaljer..." @@ -6249,8 +6248,8 @@ msgstr "Skapa tabell" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Namn" @@ -6350,8 +6349,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 " @@ -6362,7 +6361,7 @@ msgid "use this for future exports" msgstr "använd detta för framtida export" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Teckenuppsättning för filen:" @@ -6878,11 +6877,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 msgid "Related Links" @@ -6941,7 +6940,7 @@ msgstr "Händelse" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definition" @@ -7002,7 +7001,7 @@ msgstr "Visa MIME-typer" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Värd" @@ -7218,8 +7217,8 @@ msgstr "Exportera innehåll" msgid "No data found for GIS visualization." msgstr "Inga data finns för GIS visualisering." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." @@ -7395,77 +7394,77 @@ msgstr "SQL kompatibilitetsläge:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Använd inte AUTO_INCREMENT för nollvärden" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Dölj" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binär" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "På grund av sin längd,
    är denna kolumn kanske inte redigerbar" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binär - ändra inte" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "Uppladdningskatalog på webbserver" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsätt inmatning med %s rader" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "och sedan" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Infoga som ny rad och ignorera fel" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Visa insert fråga" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Ändra nästa rad" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil " "för att flytta vart som helst" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad id: %1$d" @@ -7489,7 +7488,7 @@ msgid "To" msgstr "Till" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Sänd" @@ -7505,7 +7504,7 @@ msgstr "Lägg till prefix" msgid "Do you really want to execute the following query?" msgstr "Vill du verkligen exekvera följande fråga?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Ingen förändring" @@ -7756,7 +7755,7 @@ msgid "" msgstr "" "Vänligen se dokumentationen om hur du uppdaterar din column_comments tabell" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Bokmärkt SQL-fråga" @@ -7809,6 +7808,10 @@ msgstr "" msgid "no description" msgstr "Ingen beskrivning" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Avmarkera alla" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Slavkonfiguration" @@ -7845,8 +7848,8 @@ msgstr "Master-status" msgid "Slave status" msgstr "Slav-status" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Variabel" @@ -7873,7 +7876,7 @@ msgstr "Vilken användare som helst" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Använd textfältet" @@ -7906,10 +7909,10 @@ msgid "Generate Password" msgstr "Generera lösenord" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7920,7 +7923,7 @@ msgstr "Följande fråga har fallerat: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Tyvärr kunde vi inte återställa tappade händelsen." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Den säkerhetskopierade frågan var:" @@ -7935,7 +7938,7 @@ msgstr "Händelsen %1$s har ändrats." msgid "Event %1$s has been created." msgstr "Händelsen %1$s har skapats." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7945,14 +7948,14 @@ msgstr "" msgid "Edit event" msgstr "Editera händelse" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fel i utförandebegäran" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detaljer" @@ -7965,7 +7968,7 @@ msgstr "Händelsenamn" msgid "Event type" msgstr "Händelsetyp" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Ändra till %s" @@ -7992,13 +7995,13 @@ msgstr "Slut" msgid "On completion preserve" msgstr "Vid avslut, bevara" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definierare" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Defineraren måste vara i formatet: \"användarnamn@hostname\"" @@ -8023,7 +8026,7 @@ msgstr "Du måste ange en giltig typ för händelsen." msgid "You must provide an event definition." msgstr "Du måste ange en händelsedefinition." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Ny" @@ -8043,7 +8046,7 @@ msgstr "Status för händelsehanteraren" msgid "Returns" msgstr "Returnerar" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8055,89 +8058,89 @@ msgstr "" "misslyckas!![/strong] Använd den förbättrade \"mysqli\" utvidgningen för att " "undvika eventuella problem." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ogiltig rutintyp: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Tyvärr, vi lyckades inte återställa den slängda rutinen." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Rutinen %1$s har modifierats." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Rutinen %1$s har skapats." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Redigera rutin" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Rutinnamn" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parametrar" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Riktning" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Längd/Värden" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Lägg till parameter" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Ta bort senaste parametern" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Returtyp" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Returnera längd/värden" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Return alternativ" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Är deterministisk" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Säkerhetstyp" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL dataaccess" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Du måste ange ett rutinnamn" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ogiltig riktning \"%s\" angiven för parameter." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8145,37 +8148,37 @@ msgstr "" "Du måste ange Längd / värden rutin parametrar av typen ENUM, SET, VARCHAR " "och VARBINARY." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Du måste ange ett namn och en typ för varje rutinparameter." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Du måste ange en giltig returtyp för händelsen." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Du måste ange en rutindefinition." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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 rad berörs av det sista uttrycket inom proceduren" msgstr[1] "%d rader berörs av det sista uttrycket inom proceduren" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Exekveringsresultat av rutin %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Utför rutin" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Rutinparametrar" @@ -8458,7 +8461,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Okänt språk: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Nuvarande Server" @@ -8489,50 +8492,50 @@ msgstr "Måldatabas" msgid "Click to select" msgstr "Klicka för att markera" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Rensa" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Kolumn" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 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:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Ersätt befintligt bokmärke med samma namn" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Avgränsare" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Visa denna fråga här igen" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Visa endast" @@ -8635,7 +8638,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Index" @@ -8686,12 +8689,12 @@ msgid "As defined:" msgstr "Som definierat:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Primär" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Fulltext" @@ -8704,12 +8707,12 @@ msgstr "först" msgid "after %s" msgstr "efter %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Lägg till %s fält" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "Du måste lägga till åtminstone en kolumn." @@ -8765,7 +8768,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Visar en länk för att ladda ner denna bild." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8942,8 +8945,8 @@ msgid "Protocol version" msgstr "Protokollversion" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Användare" @@ -9065,8 +9068,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:380 #, php-format @@ -9075,15 +9078,15 @@ msgid "" "issues." msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga problem." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Inga databaser" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "Filtrera databaser efter namn" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Filtrera tabeller efter namn" @@ -9104,7 +9107,7 @@ msgstr "Visa/Dölj vänster meny" msgid "Save position" msgstr "Spara position" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Skapa relation" @@ -9164,37 +9167,37 @@ msgstr "Dölj/visa tabeller utan relationer" msgid "Number of tables" msgstr "Antal tabeller" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Ta bort relation" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Relation aktör" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Förutom" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "underfråga" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Byt namn till" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Nytt namn" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Aggregera" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Aktiva alternativ" @@ -9357,13 +9360,13 @@ msgstr "Välj binär logg att visa" msgid "Files" msgstr "Filer" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Korta av visade frågor" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Visa fullständiga frågor" @@ -9379,7 +9382,7 @@ msgstr "Position" msgid "Original position" msgstr "Ursprunglig position" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Information" @@ -9407,11 +9410,11 @@ msgstr "Master replikering" msgid "Slave replication" msgstr "Slav replikering" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Aktivera Statistik" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9659,7 +9662,7 @@ msgid "None" msgstr "Inget" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" @@ -9676,7 +9679,7 @@ msgstr "Administration" msgid "Global privileges" msgstr "Globala privilegier" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" @@ -9697,7 +9700,7 @@ msgstr "Inloggningsinformation" msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Ingen användare hittades." @@ -9746,7 +9749,7 @@ msgstr "De valda användarna har tagits bort." msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Ändra privilegier" @@ -9759,7 +9762,7 @@ msgid "Export all" msgstr "Exportera allt" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Vem som helst" @@ -9776,83 +9779,83 @@ msgstr "Privilegier för %s" msgid "Users overview" msgstr "Användare översikt" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Beviilja" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Ta bort valda användare" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Upphäv alla aktiva privilegier från användarna och ta bort dem efteråt." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Ta bort databaserna med samma namn som användarna." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 behörigheter direkt från MySQL's " "behörighetstabeller. Innehållet i dessa tabeller kan skilja sig från de " "behörigheter servern använder, om manuella ändringar har gjorts. Är så " "fallet bör du %sladda om behörigheterna%s innan du fortsätter." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Den valda användaren kunde inte hittas i privilegietabellen." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Kolumnspecifika privilegier" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Lägg till privilegier till följande databas" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Jokertecknen _ och % måste föregås av ett \\ för att användas i egentlig " "betydelse" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Lägg till privilegier till följande tabell" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Ändra inloggningsinformation / Kopiera användare" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Skapa en ny användare med samma privilegier och ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... behåll den gamla." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... ta bort den gamla från användartabellerna." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9860,41 +9863,41 @@ msgstr "" " ... ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Databas för användare" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Skapa databas med samma namn och tilldela alla privilegier" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Bevilja alla privilegier för databas "%s"" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Användare som har tillgång till "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "databasspecifik" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "jokertecken" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "En användare har skapats." @@ -10178,23 +10181,23 @@ msgstr "Visa endast varnings värden" msgid "Filter by category..." msgstr "Filtrera efter kategori ..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Visa oformaterade värden" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "Liknande länkar:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Kör analysator" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Instruktioner" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10202,7 +10205,7 @@ msgstr "" "Advisor systemet kan ge rekommendationer på server variabler genom att " "analysera server status variablerna." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10211,7 +10214,7 @@ msgstr "" "Observera att detta system ger rekommendationer baserat på enkla beräkningar " "och genom tumregler som inte nödvändigtvis gäller för ditt system." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10221,7 +10224,7 @@ msgstr "" "ändra (genom att läsa dokumentation) och hur du kan ångra ändringen. Fel " "inställning kan ha en mycket negativ inverkan på prestandan." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10232,31 +10235,31 @@ msgstr "" "inte fanns någon tydligt mätbar förbättring." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Frågor sedan start: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Uppgifterna" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Nätverkstrafik sedan start:%s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Denna MySQL-servern har varit igång i %1$s. Den startade den %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10264,17 +10267,17 @@ msgstr "" "Denna MySQL-server fungerar sommaster ochslave i " "replicerings process." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Denna MySQL server arbetar som master in replication process." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Denna MySQL server arbetar som slave in replication process." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10282,11 +10285,11 @@ msgstr "" "För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Replikeringsstatus" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10294,35 +10297,35 @@ msgstr "" "På en upptagen server kan byte-räknare spåra ur, så statistiken som " "rapporteras av MySQL-servern kan vara fel." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Mottagna" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Skickade" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Max. samtidiga förbindelser" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Misslyckade försök" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Avbrutna" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Kommando" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10330,11 +10333,11 @@ msgstr "" "Antalet anslutningar som avbröts eftersom klienten dog utan att stänga " "anslutningen ordentligt." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antalet misslyckade försök att ansluta till MySQL-servern." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10344,16 +10347,16 @@ msgstr "" "överskred värdet binlog_cache_size och använde en temporär fil för att lagra " "satser från transaktionen." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Antalet transaktioner som använde den temporära binära loggcachen." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10365,11 +10368,11 @@ msgstr "" "kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller " "lagras i minne istället för på disk." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10377,7 +10380,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10385,7 +10388,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10393,23 +10396,23 @@ msgstr "" "Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man " "använder INSERT DELAYED får sin egen tråd." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Antalet gånger en rad togs bort från en tabell." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10419,7 +10422,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10429,7 +10432,7 @@ msgstr "" "tyder det på att servern gör många helindex-avsökningar; t.ex. SELECT col1 " "FROM foo, under förutsättning att col1 är indexerad." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10438,7 +10441,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10448,7 +10451,7 @@ msgstr "" "värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du " "gör en indexavsökning." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10456,7 +10459,7 @@ msgstr "" "Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna " "läsmetod används huvudsakligen för att optimera ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10468,7 +10471,7 @@ msgstr "" "Du har förmodligen många frågor som kräver att MySQL avsöker hela tabeller " "eller du har föreningar som inte använder nycklar på rätt sätt." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10480,35 +10483,35 @@ msgstr "" "dina tabeller inte är riktigt indexerade eller att dina frågor inte är " "skrivna för att dra nytta av de index du har." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Antalet efterfrågningar att lägga till en rad i en tabell." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antalet buffert-sidor som har efterfrågats om att bli rensade." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Antalet tomma sidor." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10518,7 +10521,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10530,11 +10533,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i antal sidor." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10542,7 +10545,7 @@ msgstr "" "Antalet \"slumpmässiga\" läsningar i förväg som InnoDB initierat. Detta sker " "när en fråga ska avsöka en stor del av en tabell men i slumpmässig ordning." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10550,11 +10553,11 @@ msgstr "" "Antalet sekventiella läsningar i förväg som InnoDB initierat. Detta sker när " "InnoDB gör en sekventiell avsökning av en hel tabell." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10562,7 +10565,7 @@ msgstr "" "Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och " "fick göra en enkelsidig läsning." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10576,51 +10579,51 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal väntande fsync()-operationer." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Nuvarande antal väntande läsningar." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Nuvarande antal väntande skrivningar." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "Antalet sidor som har skrivits för doublewrite transaktioner." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "Antalet doublewrite transaktioner som har utförts.." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10628,35 +10631,35 @@ msgstr "" "Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på " "att den skulle rensas innan kunde fortsätta." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Antalet skriv-begäran att skriva till logg." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Antalet väntande fsync() av loggfil." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Väntande skrivningar till loggfil." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10664,51 +10667,51 @@ msgstr "" "Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i " "sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Antalet radlås som för närvarande väntas på." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid spenderad på att skaffa radlås, i millisekunder." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximal tid för att skaffa ett radlås, i millisekunder." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Antalet gånger ett radlås behövde väntas på." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10716,7 +10719,7 @@ msgstr "" "Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts " "till disk. Det brukade vara känt som Not_flushed_key_blocks." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10724,7 +10727,7 @@ msgstr "" "Antalet oanvända block i nyckelcachen. Du kan använda detta värde för att " "avgöra hur stor del av nyckelcachen som används." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10733,15 +10736,15 @@ msgstr "" "Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " "indikerar maximala antalet block som någonsin använts vid ett tillfälle." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Andel av använd nyckelcache (beräknat värde)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Antalet efterfrågningar att läsa ett nyckelblock från cachen." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10751,7 +10754,7 @@ msgstr "" "är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " "missfrekvens kan beräknas som Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10759,20 +10762,20 @@ msgstr "" "Misslyckad nyckelcache beräknas som andelen fysiska läsningar jämfört med " "läsbegaäran (beräknat värde)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "Andel fysiska skrivningar jämfört med läsbegäran (beräknat värde)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10783,7 +10786,7 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10791,11 +10794,11 @@ msgstr "" "Det maximala antalet anslutningar som har använts samtidigt sedan servern " "startade." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antalet rader som väntar på att skrivas i INSERT DELAYED-köer." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10803,19 +10806,19 @@ msgstr "" "Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är " "förmodligen ditt tabellcache-värde för litet." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antalet strömmar som är öppna (används huvudsakligen för loggning)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10824,19 +10827,19 @@ msgstr "" "Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, " "vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Antalet förfrågningar tillagda i cachen." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10848,7 +10851,7 @@ msgstr "" "storleken på frågecachen. Frågecachen använder strategin minst nyligen " "använd (LRU) för att bestämma vilka frågor som ska tas bort från cachen." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10856,19 +10859,19 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10876,11 +10879,11 @@ msgstr "" "Antalet kopplingar som inte använder index. Om detta värde inte är 0, bör du " "noggrant kontrollera index för dina tabeller." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Antalet kopplingar som använde en urvalssökning på en referenstabell." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10889,7 +10892,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10897,17 +10900,17 @@ msgstr "" "Antalet kopplingar som använde urval på den första tabellen. (Det är normalt " "inte kritiskt även om detta är stort.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" "Antalet kopplingar som gjorde en fullständig genomsökning av den första " "tabellen." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antalet temporära tabeller för närvarande öppna av slavens SQL-tråd." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10915,25 +10918,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denna är ON ifall denna server är en slav som är förbunden till en " "huvudserver." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Antalet frågor som har tagit mer än slow_launch_time sekunder att skapa." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antalet frågor som har tagit mer än long_query_time sekunder." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10943,23 +10946,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med intervall." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Antalet gånger som ett tabellås förvärvades omedelbart." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10971,7 +10974,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -10981,11 +10984,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Antalet öppna förbindelser." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10997,47 +11000,47 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "Trådad cache träffrekvens (beräknat värde)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "Starta Monitor" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Instruktioner/Setup" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Klar ändra/editera diagram" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Lägg till diagram" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Ordna/editera diagram" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Uppdateringsfrekvens" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Visa kolumner" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Diagram arrangemang" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11045,15 +11048,15 @@ msgstr "" "Arrangemanget av diagrammen lagras lokalt i webbläsarens. Du kanske vill " "exportera den om du har en komplicerad inställning." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Återställ till standardinställningen" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "Övervaka instruktioner" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11067,7 +11070,7 @@ msgstr "" "Observera att general_log producerar mycket data och ökar lasten på servern " "med upp till 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11079,11 +11082,11 @@ msgstr "" "stöds av MySQL 5.1.6 och senare. Du kan fortfarande använda " "serverfunktionernas diagramfunktioner." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "Använda monitorn:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11094,7 +11097,7 @@ msgstr "" "\"Inställningar\", eller ta bort diagram med cog-ikonen vid respektive " "diagram." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11106,11 +11109,11 @@ msgstr "" "bekräftat kommer detta ladda en tabell över grupperade frågor, Där kan du " "klicka på de förekommande SELECT-satser för att ytterligare analysera dessa." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Vänligen notera:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11123,86 +11126,86 @@ msgstr "" "samt att inaktivera \"general_log\" och tömma tabellen när övervakningen " "inte behövs längre." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Förinställt diagram" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Statusvariabler" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Välj serie:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Vanligtvis övervakade" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "eller skriv variabelnamn:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Visa som skillnadsvärde" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Tillämpa en dividend" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Lägg till enhet till datavärdena" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Lägg till denna serie" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Rensa serie" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Serie i diagram:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Logga statistik" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Välj tidsintervall:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hämta endast SELECT, INSERT, UPDATE och DELETE kommandon" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Ta bort variabeldata i INSERT kommandon för bättre gruppering" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "Välj från vilken logg du vill att statistiken ska genereras från." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Resultaten grupperas efter frågetext." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Frågeanalyserare" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekunder" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11607,8 +11610,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 det är nödvändigt, använd extra skyddsinställningar - " -"%shost autentisering%s inställningar och %strusted proxies listan%s. Dock " +"Om du känner att det är nödvändigt, använd extra skyddsinställningar - %" +"shost autentisering%s inställningar 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." @@ -11979,35 +11982,35 @@ msgstr "Kontrollera referensintegritet:" msgid "Showing tables" msgstr "Visar tabeller" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Visa använt utrymme" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Radstatistik" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statisk" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Radlängd" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Radstorlek" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Nästa AutoIndex" @@ -12032,7 +12035,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Begränsning av främmande nyckel" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Spatial" @@ -12082,49 +12085,49 @@ msgstr "Ett index har lagts till för %s" msgid "Show more actions" msgstr "Visa fler åtgärder" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Flytta kolumner" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Flytta kolumner genom att dra dem uppåt och nedåt." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Redigera vy" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Visa relationer" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Föreslå tabellstruktur" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Lägg till kolumn" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "I slutet av tabellen" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "I början av tabellen" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Efter %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "Skapa ett index för  %s kolumn(er)" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "partitionerad" @@ -12651,8 +12654,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Det nuvarande förhållandet mellan ledigt frågecacheminne den totala fråge " "cache-storlek är %s%%. Det bör vara över 80%%" @@ -12805,8 +12808,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% av alla sorter orsakar tillfälliga tabeller, detta värde bör vara lägre " "än 10%%." @@ -13508,12 +13511,12 @@ msgstr "" "InnoDB buffer poolen har stor inverkan på prestandan för InnoDB tabeller. " "Tilldela allt ditt återstående minne till denna buffert. För databasservrar " "som uteslutande använder InnoDB som lagrings motor och har inga andra " -"tjänster (t.ex. en webbserver) som kör, kan du ställa in detta så hög som " -"80%% av ditt tillgängliga minne. Om så inte är fallet, måste du noggrant " -"bedöma minnesåtgången för dina andra tjänster och icke-InnoDB-tabeller och " -"ställa in denna variabel därefter. Om den är för hög, kommer ditt system " -"börja swappa, vilket minskar prestandan avsevärt. se även denna artikel" #: libraries/advisory_rules.txt:448 diff --git a/po/ta.po b/po/ta.po index cab6621eeb..f57a2eae96 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2011-12-28 11:44+0200\n" "Last-Translator: any anonymous user <>\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.1.6\n" @@ -41,53 +41,54 @@ msgstr "" "மூடியிருக்க வேண்டும், அல்லது உங்கள் உலாவி பாதுகாப்பு அமைப்புகள் குறுக்கு-சாளர " "மேம்படுத்தல்களை தடுக்க உள்ளமைக்கப்பட்டிருக்கின்றன." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "தேடு" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "செல் " #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "முக்கியபெயர்" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "விளக்கம்" @@ -118,13 +119,13 @@ msgstr "தரவுத்தள கருத்துரை" msgid "Table comments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "அட்டவணைக் கருத்துரைகள்" msgid "Column" msgstr "நிரல்" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "வகை" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "இணைப்பு" msgid "Comments" msgstr "கருத்துரைகள்" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "கருத்துரைகள்" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "இல்லை" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "இல்லை" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "தரவுத்தளத்தின் திட்ட வடிவ msgid "No tables found in database." msgstr "அட்டவணைகள் எதுவும் தரவுத்தளத்தில் காணப்படவில்லை" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "அனைத்தையும் தெரிவுசெய்" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "அனைத்து தெரிவுகளையும் நீக்கு" @@ -324,12 +325,12 @@ msgstr "கட்டுப்பாடுகளை சேர்க்க" msgid "Switch to copied database" msgstr "பிரதியான தரவுதளத்துக்கு மாறு" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "அடுக்கு" @@ -352,17 +353,17 @@ msgstr "தொடர்புசார் திட்டத்தை திர #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "அட்டவணை" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "வரிசைகள்" @@ -377,21 +378,21 @@ msgstr "பயன்பாட்டில்" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "உருவாக்கம்" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "இறுதி இற்றைப்படுத்தல்" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "கடைசி சோதனை" @@ -454,7 +455,7 @@ msgid "Del" msgstr "அழி" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "அல்லது" @@ -495,87 +496,87 @@ msgstr "வினவலை சமர்ப்பி" msgid "Access denied" msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "குறைந்தபட்சம் ஒரு சொல்லையாவது" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "அனைத்து சொற்களும்" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "சரியான சொற்றொடர்" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "வழக்கமான வெளிப்பாடு" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s இற்கான தேடல் முடிவுகள்:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s அட்டவணையில் பொருந்தியவை %s" -msgstr[1] "%s அட்டவணையில் பொருந்தியவைகள் %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "உலாவு" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "அழி" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "மொத்தம்: %s பொருத்தம்" msgstr[1] "மொத்த: %s பொருத்தங்கள்" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s அட்டவணையில் பொருந்தியவை %s" +msgstr[1] "%s அட்டவணையில் பொருந்தியவைகள் %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "உலாவு" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "அழி" + +#: db_search.php:362 msgid "Search in database" msgstr "தரவுத்தளத்தில் தேடு" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "தேட வார்த்தைகள் அல்லது மதிப்புகள் (குழுக்குறி: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "கண்டறி:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "சொற்கள் ஓர் இடைவெளி எழுத்தால் (\" \") பிரிக்கப்பட்டிருக்கும்." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "அட்டவணைகளில்:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "நிரல் உள்ளே:" @@ -614,8 +615,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -623,7 +624,7 @@ msgstr "" msgid "View" msgstr "நோக்கு" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -633,95 +634,91 @@ msgstr "படியெடுத்தல்" msgid "Sum" msgstr "கூட்டுத்தொகை" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "உடன் தெரிவுசெய்யப்பட்டது:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "அனைத்தையும் தெரி" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ஏற்றுமதி" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "அச்சுப் பார்வை" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "வெறுமை" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "அழி" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "அட்டவணையை சரிபார்" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "அட்டவணையை உகப்பாக்கு" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "அட்டவணையை திருத்து" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "அட்டவணையை பகுப்பாய்" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Display table filter" msgid "Replace table prefix" msgstr "கருதிட்குள் சேர்க்க" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "தரவு அகராதி" @@ -734,9 +731,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "தரவுத்தளம்" @@ -753,17 +750,17 @@ msgstr "உருவாக்கப்பட்டது" msgid "Updated" msgstr "புதுப்பிக்கப்பட்டது" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "தகுநிலை" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "செயல்" @@ -795,7 +792,7 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "அட்டவணைத் தடம்" @@ -937,8 +934,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1001,13 +998,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "திரும்பி" @@ -1096,8 +1093,8 @@ msgstr "" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "பயனரை சேர்" @@ -1115,7 +1112,7 @@ msgid "Close" msgstr "மூடு" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1142,13 +1139,13 @@ msgstr "நிலையான தரவு" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "மொத்தம்" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "ஏனையது" @@ -1178,7 +1175,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "செயலாக்கங்கள்" @@ -1238,13 +1235,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1296,7 +1293,7 @@ msgstr "துண்டுகள் அனுப்ப" msgid "Bytes received" msgstr "துண்டுகள் ஏற்றுக்கொள்ளப்பட்டது" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "இணைப்புகள்" @@ -1337,11 +1334,11 @@ msgstr "%s அட்டவணை" msgid "Questions" msgstr "வினாக்கள்" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "போக்குவரத்து" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "அமைப்புகள்" @@ -1364,8 +1361,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "எதுவுமில்லை" @@ -1458,7 +1455,7 @@ msgstr "அமைப்புக்களை மாற்று" msgid "Current settings" msgstr "நடப்பு அமைப்புக்கள்" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "வரைபடத் தலைப்பு" @@ -1545,7 +1542,7 @@ msgstr "" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "" @@ -1647,10 +1644,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "இறக்குமதி" @@ -1700,9 +1697,9 @@ msgstr "" msgid "Test" msgstr "சோதனை" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "விலக்கு" @@ -1730,9 +1727,9 @@ msgstr "நெடுக்கை அழிக்கபடுகின்றத msgid "Adding Primary Key" msgstr "முதன்மை சாவி இணைக்கப்படுகின்றது" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "சரி" @@ -1814,7 +1811,7 @@ msgstr "அழித்தல்" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1855,8 +1852,8 @@ msgstr "வினவல் பெட்டியை காண்பி" msgid "No rows selected" msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "மாற்று" @@ -1871,7 +1868,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2385,16 +2382,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "ஒரு வினாடிக்கு" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "ஒரு நிமிடத்திற்கு " -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "ஒரு மணி நேரத்திற்கு " @@ -2497,8 +2494,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2551,7 +2548,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2578,29 +2575,29 @@ msgstr "" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Add into comments" msgid "Display chart" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2669,55 +2666,55 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "சுட்டுகள்" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "தனித்தன்மை" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "பொதிக்கப்பட்டது" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "கருத்துரை" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "தரவுத்தளங்கள்" @@ -2727,7 +2724,7 @@ msgstr "தரவுத்தளங்கள்" msgid "Server" msgstr "சேவையன்" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2740,104 +2737,104 @@ msgstr "சேவையன்" msgid "Structure" msgstr "கட்டமைப்பு" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "செருகு" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "செயல்பாடுகள்" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "Usage" msgid "Users" msgstr "பாவனையளவு" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "வலு" @@ -2879,71 +2876,71 @@ msgstr "சமீபத்திய அட்டவணைகள்" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "தகுதியற்ற தரவுத்தளம்" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "தகுதியற்ற அட்டவணைப் பெயர்" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "%s தரவுத்தளமானது %s ஆக பெயர் மாற்றப்பட்டது" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2951,22 +2948,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -2976,7 +2973,7 @@ msgstr "" msgid "Table Search" msgstr "தேடு" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "" @@ -3102,14 +3099,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3367,8 +3364,8 @@ msgstr "வரவேற்கிறது %s" #: libraries/auth/config.auth.lib.php:98 #, 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 " "பயன்படுத்தலாம்" @@ -3480,12 +3477,12 @@ msgstr "அட்டவணைகள்" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "தரவு" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "" @@ -3592,18 +3589,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "ஆங்" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL வினவல்" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3691,7 +3688,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "உனது கணினியை உலாவு" @@ -3701,8 +3698,8 @@ msgstr "உனது கணினியை உலாவு" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -3886,7 +3883,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4155,7 +4152,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "" @@ -4451,7 +4448,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5666,7 +5663,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -5976,21 +5973,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6045,8 +6042,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6146,8 +6143,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:285 @@ -6155,7 +6152,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6616,8 +6613,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6677,7 +6674,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6740,7 +6737,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -6940,8 +6937,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7104,75 +7101,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7198,7 +7195,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7214,7 +7211,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7466,7 +7463,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7513,6 +7510,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7547,8 +7548,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7573,7 +7574,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7604,10 +7605,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7618,7 +7619,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7633,7 +7634,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7644,14 +7645,14 @@ msgstr "" msgid "Edit event" msgstr "புதிய பயனாளரை சேர்க்க" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7664,7 +7665,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "" @@ -7691,13 +7692,13 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7722,7 +7723,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7744,7 +7745,7 @@ msgstr "" msgid "Returns" msgstr "செயல்கள்" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7752,129 +7753,129 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Action" msgid "Direction" msgstr "செயல்" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Actions" msgid "Return options" msgstr "செயல்கள்" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8169,7 +8170,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8200,50 +8201,50 @@ msgstr "" msgid "Click to select" msgstr "சொடுக்கி தெரிவுசெய்" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8326,7 +8327,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8373,12 +8374,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8392,13 +8393,13 @@ msgstr "" msgid "after %s" msgstr "%s பின்" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s களத்தை சேர்க்க" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -8445,7 +8446,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8589,8 +8590,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -8702,15 +8703,15 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "" @@ -8731,7 +8732,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -8791,37 +8792,37 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Actions" msgid "Active options" @@ -8983,13 +8984,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9005,7 +9006,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -9034,11 +9035,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9281,7 +9282,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9298,7 +9299,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9318,7 +9319,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9367,7 +9368,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9382,7 +9383,7 @@ msgid "Export all" msgstr "ஏற்றுமதி" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9401,115 +9402,115 @@ msgstr "" msgid "Users overview" msgstr "இறுதிப்பர்வை" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "" @@ -9776,43 +9777,43 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9820,115 +9821,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "நிறுத்தப்பட்டுள்ளது" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9936,78 +9937,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10015,7 +10016,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10023,42 +10024,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10066,33 +10067,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10101,242 +10102,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10344,99 +10345,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10444,18 +10445,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10463,65 +10464,65 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s களத்தை சேர்க்க" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10530,7 +10531,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10538,18 +10539,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10557,11 +10558,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10569,88 +10570,88 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "புதிய பயனாளரை சேர்க்க" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11392,35 +11393,35 @@ msgstr "" msgid "Showing tables" msgstr "அட்டவணைகளை காட்டு" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "பயனுடைய" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "மாறா" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "இறக்காற்றல்" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "நிரல் நீளம்" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "நிரல் அளவு" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11443,7 +11444,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11495,53 +11496,53 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "நெடுக்கைகளை சேர்" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "தொகுப்பு பார்வை" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "தொடர்பு பார்வை" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s களத்தை சேர்க்க" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s பின்" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12050,8 +12051,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12178,8 +12179,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/te.po b/po/te.po index f049951500..b13bd18df9 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:16+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -39,53 +39,54 @@ msgid "" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "శోధించు" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "వెళ్ళు" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "కీలకపదం" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "వివరణ" @@ -117,13 +118,13 @@ msgid "Table comments" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "పట్టిక వ్యాఖ్యలు" msgid "Column" msgstr "వరుస" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "రకం" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "" msgid "Comments" msgstr "వ్యాఖ్యలు" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "వ్యాఖ్యలు" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "కాదు" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "కాదు" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "" msgid "No tables found in database." msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "అన్నీ ఎంచుకో" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "అన్నీ ఎంచుకోవద్దు" @@ -326,12 +327,12 @@ msgstr "" msgid "Switch to copied database" msgstr "" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "" @@ -352,17 +353,17 @@ msgstr "" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "పట్టిక" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "" @@ -378,21 +379,21 @@ msgstr "వాడుకలో ఉన్నది" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "సృష్టి" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "చివరి మార్పు" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "చివరి చూపు" @@ -459,7 +460,7 @@ msgstr "తొలగించు" # మొదటి అనువాదము #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "లేదా" @@ -500,88 +501,88 @@ msgstr "క్వెరీ ని సమర్పించు" msgid "Access denied" msgstr "యాక్సెస్ నిరోధించడమైనది" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "కనీసం ఒక్క పదం" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "అన్ని పదాలూ" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "" -msgstr[1] "" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "తొలగించు" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "మొత్తం: %s పోలిక" msgstr[1] "మొత్తం: %s పోలికలు" -#: db_search.php:292 +#: db_search.php:296 +#, php-format +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "" +msgstr[1] "" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "తొలగించు" + +#: db_search.php:362 msgid "Search in database" msgstr "" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" # మొదటి అనువాదము -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "వెతుకు" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Use Tables" msgid "Inside tables:" msgstr "పట్టికల్ని వాడు" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "" @@ -620,8 +621,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" # మొదటి అనువాదము @@ -630,7 +631,7 @@ msgstr "" msgid "View" msgstr "చూపుము" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -641,96 +642,92 @@ msgstr "" msgid "Sum" msgstr "మొత్తము" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ఎగుమతి" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "" # మొదటి అనువాదము -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "ఖాళీ" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Display table filter" msgid "Replace table prefix" msgstr "పట్టిక వ్యాఖ్యలు" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" @@ -744,9 +741,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "డేటాబేస్" @@ -763,17 +760,17 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "స్థితి" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "చర్య" @@ -805,7 +802,7 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "" @@ -947,8 +944,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1011,13 +1008,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర్వహించబడింది" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "వెనుకకి" @@ -1112,8 +1109,8 @@ msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" # మొదటి అనువాదము -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1133,7 +1130,7 @@ msgid "Close" msgstr "మూసివేయి" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1160,13 +1157,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "మొత్తం" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1196,7 +1193,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1262,13 +1259,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "మెబై" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "కిబై" @@ -1324,7 +1321,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "అనుసంధానాలు" @@ -1367,11 +1364,11 @@ msgstr "%s పట్టిక" msgid "Questions" msgstr "సంబంధాలు" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "అమరికలు" @@ -1397,8 +1394,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "ఏమీలేదు" @@ -1497,7 +1494,7 @@ msgstr "ప్రాధమిక అమరికలు" msgid "Current settings" msgstr "మరిన్ని అమరికలు" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Default title" msgid "Chart Title" @@ -1590,7 +1587,7 @@ msgstr "" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "సమయం" @@ -1697,10 +1694,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "దిగుమతి" @@ -1758,9 +1755,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "రద్దుచేయి" @@ -1788,9 +1785,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "సరే" @@ -1892,7 +1889,7 @@ msgstr "తొలగించు" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1934,8 +1931,8 @@ msgid "No rows selected" msgstr "" # మొదటి అనువాదము -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "మార్చుము" @@ -1950,7 +1947,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2467,16 +2464,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "క్షణానికి" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "నిమిషానికి" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "గంటకి" @@ -2592,8 +2589,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "ఎంపికలు" @@ -2648,7 +2645,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2675,32 +2672,32 @@ msgstr "మొత్తం" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" # మొదటి అనువాదము -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2769,55 +2766,55 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "వ్యాఖ్య" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "" @@ -2827,7 +2824,7 @@ msgstr "" msgid "Server" msgstr "" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2840,104 +2837,104 @@ msgstr "" msgid "Structure" msgstr "నిర్మాణాకృతి" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "వాడుకరి" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "పొరపాటు" @@ -2985,72 +2982,72 @@ msgstr "పట్టికను సృష్టించు" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" # మొదటి అనువాదము -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Page has been created" msgid "Table %1$s has been renamed to %2$s." msgstr "పుటను సృష్టించడమైనది" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3058,22 +3055,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "విలువ" @@ -3084,7 +3081,7 @@ msgstr "విలువ" msgid "Table Search" msgstr "శోధించు" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "" @@ -3211,14 +3208,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3477,8 +3474,8 @@ msgstr "%sకి స్వాగతం" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3588,12 +3585,12 @@ msgstr "పట్టికలు" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "" @@ -3703,18 +3700,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3802,7 +3799,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3812,8 +3809,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -4001,7 +3998,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4271,7 +4268,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "" @@ -4567,7 +4564,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5797,7 +5794,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "" @@ -6108,21 +6105,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "వివరాలు..." @@ -6182,8 +6179,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "పేరు" @@ -6284,8 +6281,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:285 @@ -6293,7 +6290,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6756,8 +6753,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6819,7 +6816,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -6882,7 +6879,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -7086,8 +7083,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7254,78 +7251,78 @@ msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "దాచు" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "మరియు తరువాత" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7351,7 +7348,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "దాఖలుచేయి" @@ -7367,7 +7364,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7631,7 +7628,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7678,6 +7675,10 @@ msgstr "" msgid "no description" msgstr "వివరణ లేదు" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7712,8 +7713,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7739,7 +7740,7 @@ msgstr "ఏ వాడుకరి ఐనను" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7770,10 +7771,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7784,7 +7785,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7802,7 +7803,7 @@ msgstr "%s డేటాబేస్ తుడిచివేయడమైనద msgid "Event %1$s has been created." msgstr "పుటను సృష్టించడమైనది" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7813,14 +7814,14 @@ msgstr "" msgid "Edit event" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -7838,7 +7839,7 @@ msgid "Event type" msgstr "" # మొదటి అనువాదము -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7870,13 +7871,13 @@ msgstr "ముగింపు" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7901,7 +7902,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7923,7 +7924,7 @@ msgstr "" msgid "Returns" msgstr "పట్టిక ఎంపికలు" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7931,141 +7932,141 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "Routine %1$s has been modified." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" # మొదటి అనువాదము -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Page has been created" msgid "Routine %1$s has been created." msgstr "పుటను సృష్టించడమైనది" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Comments" msgid "Routine name" msgstr "వ్యాఖ్యలు" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "నేరు లంకెలు" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "పొడవు/విలువలు" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" # మొదటి అనువాదము -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "డేటాబేస్ తొలగించండి" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "పొడవు/విలువలు" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "పట్టిక ఎంపికలు" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "భద్రత" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8371,7 +8372,7 @@ msgstr "" msgid "Unknown language: %1$s." msgstr "తెలియని భాష: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8402,52 +8403,52 @@ msgstr "" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Comments" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8530,7 +8531,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8577,12 +8578,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "పూర్తిపాఠ్యం" @@ -8598,14 +8599,14 @@ msgid "after %s" msgstr "%s మార్లు తరువాత" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "స్పందనలకు చేర్చు" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -8652,7 +8653,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8803,8 +8804,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "వాడుకరి" @@ -8917,17 +8918,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Table name" msgid "Filter databases by name" msgstr "పట్టిక పేరు" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Table name" msgid "Filter tables by name" @@ -8952,7 +8953,7 @@ msgstr "ఎడమవైపున మెనుని చూపించు/దా msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9017,42 +9018,42 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relations" msgid "Relation operator" msgstr "సంబంధాలు" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "కొత్త పేరు" # మొదటి అనువాదము -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "సృష్టించు" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "క్రియాశీల ఎంపికలు" @@ -9223,13 +9224,13 @@ msgstr "" msgid "Files" msgstr "దస్త్రాలు" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9245,7 +9246,7 @@ msgstr "" msgid "Original position" msgstr "అసలు స్థానం" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "సమాచారం" @@ -9274,11 +9275,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "గణాంకాలని చేతనంచేయి" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9519,7 +9520,7 @@ msgid "None" msgstr "ఏమీలేవు" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9536,7 +9537,7 @@ msgstr "పరిపాలన" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9556,7 +9557,7 @@ msgstr "ప్రవేశపు సమాచారం" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "వాడుకరి కనబడలేదు." @@ -9606,7 +9607,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9622,7 +9623,7 @@ msgstr "ఎగుమతి" # మొదటి అనువాదము #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "ఏదైనను" @@ -9641,116 +9642,116 @@ msgstr "" msgid "Users overview" msgstr "అవలోకనం" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" # మొదటి అనువాదము -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... పాతదే ఉంచుము" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "Database %s has been dropped." msgid "User has been added." @@ -10019,50 +10020,50 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "సంబంధాలు" # మొదటి అనువాదము -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Analyze" msgid "Run analyzer" msgstr "విశదీకరించు" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "పరిపాలన" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10070,117 +10071,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" # మొదటి అనువాదము -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "పంపించు" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" # మొదటి అనువాదము -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "ఆజ్ఞ" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10188,78 +10189,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10267,7 +10268,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10275,42 +10276,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10318,33 +10319,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10353,245 +10354,245 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" # మొదటి అనువాదము -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య" # మొదటి అనువాదము -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10599,99 +10600,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10699,18 +10700,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10718,70 +10719,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "మొదలుపెట్టు" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" # మొదటి అనువాదము -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "స్పందనలకు చేర్చు" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Table comments" msgid "Chart columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Leave blank for defaults" msgid "Reset to default" msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10790,7 +10791,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10798,18 +10799,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10817,11 +10818,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10830,85 +10831,85 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "డేటాబేస్ తొలగించండి" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "గణాంకాలను చూపించు" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -10917,7 +10918,7 @@ msgstr[0] "క్షణం" msgstr[1] "క్షణం" # మొదటి అనువాదము -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11675,35 +11676,35 @@ msgstr "" msgid "Showing tables" msgstr "అన్నీ చూపించు" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "వరుసల గణాంకాలు" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11726,7 +11727,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11779,57 +11780,57 @@ msgid "Show more actions" msgstr "మరిన్ని చర్యలను చూపించు" # మొదటి అనువాదము -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add into comments" msgid "Move columns" msgstr "స్పందనలకు చేర్చు" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Add a new User" msgid "Edit view" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" # మొదటి అనువాదము -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "స్పందనలకు చేర్చు" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" # మొదటి అనువాదము -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s మార్లు తరువాత" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12332,8 +12333,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12462,8 +12463,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/th.po b/po/th.po index 8ec5ba52bb..d43cd2d18b 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-04-21 15:20+0200\n" "Last-Translator: Setthawut Sawaengkit \n" "Language-Team: thai \n" -"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 0.10\n" @@ -37,53 +37,54 @@ msgstr "" "ไม่สามารถเปลี่ยนแปลงข้อมูลของหน้าต่างเป้าหมายได้ อาจเป็นเพราะว่าคุณปิดหน้าต่างหลัก " "หรือสาเหตุจากการตั้งค่าความปลอดภัยให้ป้องกันการเปลี่ยนแปลงข้อมูลข้ามหน้าต่าง" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "ค้นหา" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "ลงมือ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "ชื่อคีย์" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "คำอธิบาย" @@ -114,13 +115,13 @@ msgstr "หมายเหตุของฐานข้อมูล: " msgid "Table comments" msgstr "หมายเหตุของตาราง" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -129,30 +130,30 @@ msgstr "หมายเหตุของตาราง" msgid "Column" msgstr "สดมภ์" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "ชนิด" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -190,8 +191,8 @@ msgstr "เชื่อมไปยัง" msgid "Comments" msgstr "หมายเหตุ" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -200,15 +201,15 @@ msgstr "หมายเหตุ" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "ไม่" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -223,8 +224,8 @@ msgstr "ไม่" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -239,11 +240,11 @@ msgstr "ดูโครงสร้างของฐานข้อมูล" msgid "No tables found in database." msgstr "ไม่พบตารางใดๆ ในฐานข้อมูล" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "เลือกทั้งหมด" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "ไม่เลือกเลย" @@ -320,12 +321,12 @@ msgstr "เพิ่ม constraints" msgid "Switch to copied database" msgstr "สลับไปยังฐานข้อมูลที่ถูกทำสำเนาไว้" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "การเรียงลำดับ" @@ -346,17 +347,17 @@ msgstr "แก้ไข หรือส่งออก รีเลชันแ #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "ตาราง" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "แถว" @@ -371,21 +372,21 @@ msgstr "ใช้อยู่" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "สร้างเมื่อ" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" @@ -447,7 +448,7 @@ msgid "Del" msgstr "ลบ" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "หรือ" @@ -488,85 +489,85 @@ msgstr "ประมวลผลคำค้น" msgid "Access denied" msgstr "ไม่อนุญาตให้ใช้งาน" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "อย่างน้อยหนึ่งคำ" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "ทุกคำ" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "เหมือนทั้งวลี" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "รูปแบบคำพ้อง (regular expression)" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ผลการค้นหา \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "เปิดดู" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "ลบตรงกับที่ตาราง %s หรือไม่?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "ลบ" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "รวม: %s ผลลัพธ์ที่ตรง" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "เปิดดู" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "ลบตรงกับที่ตาราง %s หรือไม่?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "ลบ" + +#: db_search.php:362 msgid "Search in database" msgstr "ค้นหาในฐานข้อมูล" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "ค้น:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "ภายในตาราง:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "ในคอลัมน์:" @@ -605,8 +606,8 @@ msgstr "หยุดการติดตามแล้ว" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "การแสดงผลนี้แสดงเพียงจำนวนข้อมูลเท่านี้, ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -614,7 +615,7 @@ msgstr "การแสดงผลนี้แสดงเพียงจำน msgid "View" msgstr "ตารางจำลอง (View)" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -624,93 +625,89 @@ msgstr "การทำข้อมูลซ้ำไปไว้อีกที msgid "Sum" msgstr "ผลรวม" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "เลือกทั้งหมด" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "ไม่เลือกเลย" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ส่งออก" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "แสดง" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "ลบข้อมูล" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "โยนทิ้ง" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "ตรวจสอบตาราง" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "ปรับแต่งตาราง" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "ซ่อมแซมตาราง" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "วิเคราะห์ตาราง" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "เพิ่มคำนำไปยังตาราง" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "แทนที่คำนำไปยังตาราง" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "คัดลอกคำนำไปยังตาราง" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "พจนานุกรมข้อมูล" @@ -723,9 +720,9 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "ฐานข้อมูล" @@ -742,17 +739,17 @@ msgstr "ถูกสร้าง" msgid "Updated" msgstr "ปรับปรุงแล้ว" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "สถานะ" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "กระทำการ" @@ -784,7 +781,7 @@ msgstr "เก็บโครงสร้างไว้" msgid "Untracked tables" msgstr "เลิกติดตามตาราง" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "ติดตามตาราง" @@ -917,8 +914,8 @@ msgstr "เลือก \"GeomFromText\" จากแถวฟังก์ชั #: import.php:86 #, 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 "" "คุณพยายามที่จะอับโหลดไฟล์ที่มีขนาดใหญ่เกินไป กรุณาดูที่ %sdocumentation%s เอกสารช่วยเหลือ " "เพื่อแก้ไขปัญหาดังกล่าวนี้ " @@ -990,13 +987,13 @@ msgstr "" "ตามเวลารันสูงสุดที่กำหนดใน PHP" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "ย้อนกลับ" @@ -1081,8 +1078,8 @@ msgstr "รหัสผ่านยังว่างอยู่!" msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "เพิ่มผู้ใช้" @@ -1100,7 +1097,7 @@ msgid "Close" msgstr "ปิด" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1127,13 +1124,13 @@ msgstr "ข้อมูลคงที่" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "รวม" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "อื่นๆ" @@ -1163,7 +1160,7 @@ msgstr "การจราจรของเครื่องแม่ข่า msgid "Connections since last refresh" msgstr "การเชื่อมต่อ จากครั้งล่าสุด" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "โพรเซส" @@ -1225,13 +1222,13 @@ msgstr "หน่วยความจำ swap ของระบบ" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "เมกกะไบต์" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "กิโลไบต์" @@ -1283,7 +1280,7 @@ msgstr "Byte ที่ส่ง" msgid "Bytes received" msgstr "Byte ที่รับ" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "การเชื่อมต่อ" @@ -1322,11 +1319,11 @@ msgstr "%d ตาราง" msgid "Questions" msgstr "คำถาม" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "การจราจร" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "การตั้งค่า" @@ -1349,8 +1346,8 @@ msgstr "กรุณาเพิ่มค่าตัวแปรอย่าง #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "ไม่มี" @@ -1445,7 +1442,7 @@ msgstr "เปลี่ยนการตั้งค่า" msgid "Current settings" msgstr "ค่าที่ถูกตั้งปัจจุบัน" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "ชื่อการแสดงผล" @@ -1531,7 +1528,7 @@ msgstr "อธิบายผลคำสั่ง" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "เวลา" @@ -1625,10 +1622,10 @@ msgid "" msgstr "" "การสร้างตารางแสดงผลล้มเหลว เป็นเพราะการตั้งค่า โปรดล้างค่ากลับไปเป็นการตั้งค่าแบบเริ่มแรก" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "นำเข้า" @@ -1680,9 +1677,9 @@ msgstr "ตัวแปรหรือสูตรที่ถูกใช้" msgid "Test" msgstr "ทดสอบ" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "ยกเลิก" @@ -1710,9 +1707,9 @@ msgstr "ทิ้งสดมส์" msgid "Adding Primary Key" msgstr "เพิ่มคีย์หลัก" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "ตกลง" @@ -1792,7 +1789,7 @@ msgstr "กำลังลบ %s" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "ฟังก์ชั่นภายในจะต้องมีค่า RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ตัวแก้ไข ENUM/SET" @@ -1831,8 +1828,8 @@ msgstr "แสดงช่องคำค้น SQL" msgid "No rows selected" msgstr "ยังไม่ได้เลือกแถว" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "เปลี่ยน" @@ -1847,7 +1844,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2348,16 +2345,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "ต่อวินาที" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "ต่อนาที" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "ต่อชั่วโมง" @@ -2472,8 +2469,8 @@ msgstr "เรียงโดยคีย์" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "กระบวนการ" @@ -2535,7 +2532,7 @@ msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "ฆ่าทิ้ง" @@ -2562,30 +2559,30 @@ msgstr "ทั้งหมด" msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "ไม่พบลิงก์" @@ -2658,55 +2655,55 @@ msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' msgid "Javascript must be enabled past this point" msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "ดัชนี" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "เอกลักษณ์" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "กลุ่ม" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "เอกเทศ" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "หมายเหตุ" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "โยนคีย์หลักทิ้งไปเรียบร้อยแล้ว" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "ฐานข้อมูล" @@ -2716,7 +2713,7 @@ msgstr "ฐานข้อมูล" msgid "Server" msgstr "เซิร์ฟเวอร์" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2729,105 +2726,105 @@ msgstr "เซิร์ฟเวอร์" msgid "Structure" msgstr "โครงสร้าง" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "แทรก" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "กระบวนการ" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "สิทธิ" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "ผู้ใช้" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "ข้อมูลไบนารี " -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "ตัวแปร" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "ชุดตัวอักษร" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "ผิดพลาด" @@ -2866,64 +2863,64 @@ msgstr "ตารางล่าสุด" msgid "There are no recent tables" msgstr "ไม่มีตารางล่าสุด" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "ไม่มีข้อมูลเกี่ยวกับรูปแบบฐานข้อมูลนี้" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s มีอยู่บน MySQL Server" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s ถูกปิดบน MySQL Server" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "MySQL ไม่รองรับ %s" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "ไม่ทราบสถานะตาราง: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "ชื่อฐานข้อมูลไม่ถูกต้อง" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "ชื่อตารางไม่ถูกต้อง" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "มีข้อผิดพลาดจากเปลี่ยนชื่อตาราง %1$s เป็น %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "ไม่สามารถบันทึกการกำหนดลักษณะตาราง UI" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2932,7 +2929,7 @@ msgstr "" "มีปัญหาในการล้างข้อมูลการตั้งค่าตาราง UL (ดูได้ที่ $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2940,23 +2937,23 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "ฟังก์ชั่น" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 #, fuzzy msgid "Operator" msgstr "กระบวนการ" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "ค่า" @@ -2966,7 +2963,7 @@ msgstr "ค่า" msgid "Table Search" msgstr "ค้นหา" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3101,14 +3098,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3367,8 +3364,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3475,12 +3472,12 @@ msgstr "ตาราง" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "ข้อมูล" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "เกินความจำเป็น" @@ -3594,18 +3591,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "คำค้น SQL" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3695,7 +3692,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3706,8 +3703,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" @@ -3904,7 +3901,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4184,7 +4181,7 @@ msgid "Character set of the file" msgstr "ชุดอักขระของไฟล์ (character set):" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "รูปแบบ" @@ -4507,7 +4504,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 #, fuzzy msgid "Servers" @@ -5777,7 +5774,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "คำค้น SQL" @@ -6091,23 +6088,23 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6165,8 +6162,8 @@ msgstr "เริ่มหน้าใหม่" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "ชื่อ" @@ -6286,8 +6283,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:285 @@ -6295,7 +6292,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "ชุดอักขระของไฟล์ (character set):" @@ -6775,8 +6772,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6850,7 +6847,7 @@ msgstr "ถูกส่ง" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -6924,7 +6921,7 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "โฮสต์" @@ -7131,8 +7128,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." @@ -7297,78 +7294,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "ข้อมูลไบนารี " -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "เนื่องจากความยาวของมัน
    ฟิลด์นี้ ไม่อาจแก้ไขได้" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "ข้อมูลไบนารี - ห้ามแก้ไข " -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7396,7 +7393,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "ส่ง" @@ -7416,7 +7413,7 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Do you really want to execute the following query?" msgstr "คุณแน่ใจที่ต้องการจะ" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" @@ -7674,7 +7671,7 @@ msgstr "" "โปรดอ่านเอกสารเกี่ยวกับ วิธีการปรับปรุงตาราง Column_comments (เก็บหมายเหตุของคอลัมน์) " "ของคุณ" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "คำค้นนี้ถูกจดไว้แล้ว" @@ -7721,6 +7718,10 @@ msgstr "" msgid "no description" msgstr "ไม่มีรายละเอียด" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "ไม่เลือกเลย" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7756,8 +7757,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "ตัวแปร" @@ -7783,7 +7784,7 @@ msgstr "ผู้ใช้ใดๆ" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" @@ -7814,10 +7815,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7828,7 +7829,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7844,7 +7845,7 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Event %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7854,16 +7855,16 @@ msgstr "" msgid "Edit event" msgstr "ถูกส่ง" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "โพรเซส" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7878,7 +7879,7 @@ msgstr "ชนิดคำค้น" msgid "Event type" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7911,13 +7912,13 @@ msgstr "ท้ายสุด" msgid "On completion preserve" msgstr "คำสั่ง INSERT เต็มรูปแบบ" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7942,7 +7943,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7964,7 +7965,7 @@ msgstr "" msgid "Returns" msgstr "ตัวเลือกตาราง" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7972,139 +7973,139 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "ชื่อคอลัมน์" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "สร้างเมื่อ" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "ความยาว/เซต*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "เอาฐานข้อมูลออก" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "ความยาว/เซต*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "ตัวเลือกตาราง" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8418,7 +8419,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8453,53 +8454,53 @@ msgstr "ค้นหาในฐานข้อมูล" msgid "Click to select" msgstr "คลิกเพื่อเลือก" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "ปฏิทิน" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "แสดงคำค้นนี้อีกที " -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "ดูอย่างเดียว" @@ -8604,7 +8605,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "ดัชนี" @@ -8657,12 +8658,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "ไพรมารี" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" @@ -8676,12 +8677,12 @@ msgstr "" msgid "after %s" msgstr "หลัง %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8730,7 +8731,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "แสดงการเชื่อมโยงเพื่อดาวน์โหลดรูปภาพนี้" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8878,8 +8879,8 @@ msgid "Protocol version" msgstr "รุ่นของโพรโทคอล" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "ผู้ใช้" @@ -9002,17 +9003,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "ไม่มีฐานข้อมูล" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "เรียงค่าในตารางตาม" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9036,7 +9037,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9101,47 +9102,47 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "มุมมองรีเลชัน" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "ส่งออก" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "ในคำค้น" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "ชื่อผู้ใช้" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "สร้าง" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9321,13 +9322,13 @@ msgstr "" msgid "Files" msgstr "จำนวนฟิลด์" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "ตัดทอนคำค้นที่แสดง" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" @@ -9343,7 +9344,7 @@ msgstr "ตำแหน่ง" msgid "Original position" msgstr "ตำแหน่งเริ่มแรก" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "ข้อมูล" @@ -9371,11 +9372,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "ให้มีการเก็บสถิติ" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9627,7 +9628,7 @@ msgid "None" msgstr "ไม่มี" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" @@ -9644,7 +9645,7 @@ msgstr "การดูแลระบบ" msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" @@ -9664,7 +9665,7 @@ msgstr "ข้อมูลล็อกอิน" msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9715,7 +9716,7 @@ msgstr "ลบผู้ใช้ที่เลือกไว้เรียบ msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "แก้ไขสิทธิ" @@ -9730,7 +9731,7 @@ msgid "Export all" msgstr "ส่งออก" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "ใดๆ" @@ -9752,115 +9753,115 @@ msgstr "สิทธิ" msgid "Users overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "มอบสิทธิ" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "ถอนผู้ใช้ที่เลือก" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... เก็บของเก่าไว้." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "มอบสิทธิทั้งหมดสำหรับฐานข้อมูล "%s"." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "โกลบอล" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "ไวล์การ์ด" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10144,49 +10145,49 @@ msgstr "แสดงตาราง" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy msgid "Show unformatted values" msgstr "แสดงตาราง" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "รีเลชัน" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "ชนิดคำค้น" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "ฟังก์ชั่น" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10194,117 +10195,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "คำสั่ง" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "ได้รับ" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "ถูกส่ง" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "ความพยายามล้มเหลว" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "ยกเลิก" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "คำสั่ง" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10312,78 +10313,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10391,7 +10392,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10399,42 +10400,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10442,33 +10443,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10477,242 +10478,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10720,99 +10721,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10820,18 +10821,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10839,70 +10840,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "หยุดการติดตามแล้ว" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ส." -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "เพิ่มฟิลด์ใหม่" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "เรียกใหม่" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10911,7 +10912,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10919,18 +10920,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10938,11 +10939,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10950,90 +10951,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "เอาฐานข้อมูลออก" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "เลือกตาราง" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "เพิ่มผู้ใช้ใหม่" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "คำค้น SQL" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "สถิติของแถว" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "เลือกทั้งหมด" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "ชนิดคำค้น" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11041,7 +11042,7 @@ msgid_plural "%d seconds" msgstr[0] "ต่อวินาที" msgstr[1] "ต่อวินาที" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11807,35 +11808,35 @@ msgstr "ตรวจสอบความสมบูรณ์ของการ msgid "Showing tables" msgstr "แสดงตาราง" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "เนื้อที่ที่ใช้" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "มีผล" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "สถิติของแถว" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "ไม่คงที่" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "ความยาวแถว" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "ขนาดแถว " -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11860,7 +11861,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11919,55 +11920,55 @@ msgstr "ได้เพิ่มดัชนีแล้วใน %s" msgid "Show more actions" msgstr "แสดงข้อมูลของ PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "เพิ่มฟิลด์ใหม่" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "แสดง" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "มุมมองรีเลชัน" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "เสนอโครงสร้างตาราง" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy msgid "Add column" msgstr "เพิ่มฟิลด์ใหม่" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "ที่จุดสุดท้ายของตาราง" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "ที่จุดเริ่มต้นของตาราง" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "หลัง %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "สร้างดัชนีโดยคอลัมน์ %s" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12480,8 +12481,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12613,8 +12614,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13320,8 +13321,8 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" -"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า " -"60%% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB " +"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า 60%" +"% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB " "มากหรือบริการอื่นๆ ที่ทำงานบนเครื่องเดียวกัน" #: libraries/advisory_rules.txt:452 @@ -13571,8 +13572,8 @@ msgstr "concurrent_insert ตั้งค่าไว้ที่ 0" #~ "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/tk.po b/po/tk.po index fff6fe48d6..f32dc7fba5 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-03-23 10:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" -"Language: tk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tk\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.8\n" @@ -42,53 +42,54 @@ msgstr "" "ýapdyňyz, ýada siziň brauzeriňiziň hopsuzlyk sazlamalary äpişgeler-arasy " "täzelemäni saklaýandyr." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Gözle" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Git" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Açarsözi" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Düşündiriş" @@ -121,13 +122,13 @@ msgstr "" msgid "Table comments" msgstr "" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -136,30 +137,30 @@ msgstr "" msgid "Column" msgstr "" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -197,8 +198,8 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -207,15 +208,15 @@ msgstr "" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -230,8 +231,8 @@ msgstr "" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -246,11 +247,11 @@ msgstr "" msgid "No tables found in database." msgstr "" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "" @@ -327,12 +328,12 @@ msgstr "" msgid "Switch to copied database" msgstr "" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "" @@ -353,17 +354,17 @@ msgstr "" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "" @@ -378,21 +379,21 @@ msgstr "" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "" @@ -455,7 +456,7 @@ msgid "Del" msgstr "" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "" @@ -496,85 +497,85 @@ msgstr "" msgid "Access denied" msgstr "" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "" -msgstr[1] "" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: db_search.php:292 -msgid "Search in database" -msgstr "" +#: db_search.php:296 +#, php-format +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "" +msgstr[1] "" -#: db_search.php:295 -msgid "Words or values to search for (wildcard: \"%\"):" -msgstr "" - -#: db_search.php:300 -msgid "Find:" -msgstr "" - -#: db_search.php:304 db_search.php:305 -msgid "Words are separated by a space character (\" \")." +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" msgstr "" #: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "" + +#: db_search.php:362 +msgid "Search in database" +msgstr "" + +#: db_search.php:366 +msgid "Words or values to search for (wildcard: \"%\"):" +msgstr "" + +#: db_search.php:373 +msgid "Find:" +msgstr "" + +#: db_search.php:376 db_search.php:377 +msgid "Words are separated by a space character (\" \")." +msgstr "" + +#: db_search.php:390 msgid "Inside tables:" msgstr "" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "" @@ -613,8 +614,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -622,7 +623,7 @@ msgstr "" msgid "View" msgstr "" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -632,93 +633,89 @@ msgstr "" msgid "Sum" msgstr "" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" @@ -731,9 +728,9 @@ msgstr "" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "" @@ -750,17 +747,17 @@ msgstr "" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "" @@ -792,7 +789,7 @@ msgstr "" msgid "Untracked tables" msgstr "" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "" @@ -925,8 +922,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -989,13 +986,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "" @@ -1079,8 +1076,8 @@ msgstr "" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "" @@ -1098,7 +1095,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1125,13 +1122,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1161,7 +1158,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1221,13 +1218,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "" @@ -1279,7 +1276,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1318,11 +1315,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "" @@ -1345,8 +1342,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "" @@ -1439,7 +1436,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "" @@ -1517,7 +1514,7 @@ msgstr "" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "" @@ -1605,10 +1602,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1656,9 +1653,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1686,9 +1683,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "" @@ -1764,7 +1761,7 @@ msgstr "" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1803,8 +1800,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "" @@ -1819,7 +1816,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2308,16 +2305,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2416,8 +2413,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2470,7 +2467,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2497,27 +2494,27 @@ msgstr "" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2586,55 +2583,55 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "" @@ -2644,7 +2641,7 @@ msgstr "" msgid "Server" msgstr "" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2657,102 +2654,102 @@ msgstr "" msgid "Structure" msgstr "" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2794,71 +2791,71 @@ msgstr "" msgid "There are no recent tables" msgstr "" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s maglumatlar ulgamy döredildi" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2866,22 +2863,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -2889,7 +2886,7 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "" @@ -3015,14 +3012,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3272,8 +3269,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3380,12 +3377,12 @@ msgstr "" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "" @@ -3492,18 +3489,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3591,7 +3588,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3601,8 +3598,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "" @@ -3786,7 +3783,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4051,7 +4048,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "" @@ -4347,7 +4344,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5550,7 +5547,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "" @@ -5856,21 +5853,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -5925,8 +5922,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6026,8 +6023,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:285 @@ -6035,7 +6032,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6494,8 +6491,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6555,7 +6552,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6616,7 +6613,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -6810,8 +6807,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6973,75 +6970,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7065,7 +7062,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7081,7 +7078,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7331,7 +7328,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7378,6 +7375,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7412,8 +7413,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7438,7 +7439,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7469,10 +7470,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7483,7 +7484,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7498,7 +7499,7 @@ msgstr "" msgid "Event %1$s has been created." msgstr "" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7507,14 +7508,14 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7527,7 +7528,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "" @@ -7554,13 +7555,13 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7585,7 +7586,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -7605,7 +7606,7 @@ msgstr "" msgid "Returns" msgstr "" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7613,125 +7614,125 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8012,7 +8013,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8043,50 +8044,50 @@ msgstr "" msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8169,7 +8170,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8214,12 +8215,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8232,12 +8233,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "" @@ -8282,7 +8283,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8420,8 +8421,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -8529,15 +8530,15 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "" @@ -8558,7 +8559,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -8618,37 +8619,37 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "" @@ -8808,13 +8809,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -8830,7 +8831,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -8858,11 +8859,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9100,7 +9101,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9117,7 +9118,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9137,7 +9138,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9186,7 +9187,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9199,7 +9200,7 @@ msgid "Export all" msgstr "" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9216,115 +9217,115 @@ msgstr "" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "" @@ -9591,43 +9592,43 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9635,115 +9636,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -9751,78 +9752,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -9830,7 +9831,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -9838,42 +9839,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -9881,33 +9882,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -9916,242 +9917,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10159,99 +10160,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10259,18 +10260,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10278,61 +10279,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10341,7 +10342,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10349,18 +10350,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10368,11 +10369,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10380,86 +10381,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11179,35 +11180,35 @@ msgstr "" msgid "Showing tables" msgstr "" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11230,7 +11231,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11282,49 +11283,49 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -11809,8 +11810,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -11928,8 +11929,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/tr.po b/po/tr.po index bacd6967ae..584b787b6f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-06-18 13:24+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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "olabilirsiniz ya da tarayıcınızın güvenlik ayarları pencereler arası " "güncellemeleri engellemek için yapılandırılmıştır." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Ara" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Git" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Anahtar adı" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Açıklama" @@ -117,13 +118,13 @@ msgstr "Veritabanı yorumu: " msgid "Table comments" msgstr "Tablo yorumları" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Tablo yorumları" msgid "Column" msgstr "Sütun" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Türü" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Bağlantı verilen:" msgid "Comments" msgstr "Yorumlar" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Yorumlar" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Hayır" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Hayır" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Veritabanının dökümünü (şemasını) göster" msgid "No tables found in database." msgstr "Veritabanında tablo bulunamadı." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Tümünü Seç" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Tüm Seçimi Kaldır" @@ -321,12 +322,12 @@ msgstr "Kısıtlamaları ekle" msgid "Switch to copied database" msgstr "Kopyalanmış veritabanına geç" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Karşılaştırma" @@ -349,17 +350,17 @@ msgstr "Bağlantılı şemayı dışa aktar veya düzenle" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tablo" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Satır" @@ -374,21 +375,21 @@ msgstr "kullanımda" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Oluşturma" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Son güncellenme" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Son kontrol" @@ -450,7 +451,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Veya" @@ -491,83 +492,85 @@ msgstr "Sorguyu Gönder" msgid "Access denied" msgstr "Erişim engellendi" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "kelimelerin en azından biri" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "tüm kelimeler" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "kesin ifade" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "kurallı ifade olarak" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s için arama sonuçları:" -#: db_search.php:242 -#, php-format -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%2$s tablosu içerisinde %1$s benzeşme" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Gözat" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "%s tablosu için benzeşenler silinsin mi?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Sil" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Toplam: %s benzeşme" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%1$s match inside table %2$s" +#| msgid_plural "%1$s matches inside table %2$s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%2$s tablosu içerisinde %1$s benzeşme" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Gözat" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "%s tablosu için benzeşenler silinsin mi?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Sil" + +#: db_search.php:362 msgid "Search in database" msgstr "Veritabanında ara" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Aranacak kelimeler veya değerler (joker: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Bul:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Kelimeler boşlukla ayrılır (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Tablo içindekiler:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "İç sütun:" @@ -606,8 +609,8 @@ msgstr "İzleme aktif değil." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." @@ -616,7 +619,7 @@ msgstr "" msgid "View" msgstr "Görünüm" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -626,93 +629,89 @@ msgstr "Kopya Etme" msgid "Sum" msgstr "Toplam" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Seçilileri:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Tümünü Seç" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Hiçbirini Seçme" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Dışa Aktar" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Kaldır" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Tabloyu kontrol et" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Tabloyu uyarla" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Tabloyu onar" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Tabloyu çözümle" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Tabloya ön ek ekle" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Tablo ön ekini değiştir" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Tabloyu ön eki ile kopyala" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Veri sözlüğü" @@ -725,9 +724,9 @@ msgstr "İzlenen tablolar" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Veritabanı" @@ -744,17 +743,17 @@ msgstr "Oluşturuldu" msgid "Updated" msgstr "Güncellendi" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Durum" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Eylem" @@ -786,7 +785,7 @@ msgstr "Yapı görüntüsü yakalama" msgid "Untracked tables" msgstr "İzlenmeyen tablolar" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Tabloyu izle" @@ -923,8 +922,8 @@ msgstr "" #: import.php:86 #, 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 "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgeden%s yararlanın." @@ -1001,13 +1000,13 @@ msgstr "" "biteremeyeceği anlamına gelir." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL sorgunuz başarılı olarak çalıştırıldı" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Geri" @@ -1092,8 +1091,8 @@ msgstr "Parola boş!" msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Kullanıcı ekle" @@ -1111,7 +1110,7 @@ msgid "Close" msgstr "Kapat" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1138,13 +1137,13 @@ msgstr "Sabit veri" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Toplam" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Diğer" @@ -1174,7 +1173,7 @@ msgstr "Sunucu trafiği (KiB olarak)" msgid "Connections since last refresh" msgstr "Son yenilemeden bu yana bağlantılar" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "İşlemler" @@ -1238,13 +1237,13 @@ msgstr "Sistem takası" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1296,7 +1295,7 @@ msgstr "Gönderilmiş bayt" msgid "Bytes received" msgstr "Alınmış bayt" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Bağlantılar" @@ -1335,11 +1334,11 @@ msgstr "%d tablo" msgid "Questions" msgstr "Sorular" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Ayarlar" @@ -1362,8 +1361,8 @@ msgstr "Lütfen diziye en az bir değişken ekleyin" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Yok" @@ -1407,8 +1406,8 @@ msgid "" "depending on your system." msgstr "" "slow_query_log etkinleştirildi ama sunucu sadece %d saniyeden daha uzun " -"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak " -"0-2 saniyeye ayarlanması tavsiye edilir." +"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak 0-" +"2 saniyeye ayarlanması tavsiye edilir." #: js/messages.php:150 #, php-format @@ -1463,7 +1462,7 @@ msgstr "Ayarları değiştir" msgid "Current settings" msgstr "Şu anki ayarlar" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Çizelge Başlığı" @@ -1547,7 +1546,7 @@ msgstr "Çıktıyı açıkla" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Süre" @@ -1642,10 +1641,10 @@ msgstr "" "İçe aktarılan yapılandırma ile çizelge çizgilerinin oluşturulması başarısız. " "Varsayılan yapılandırmaya sıfırlanıyor..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "İçe Aktar" @@ -1693,9 +1692,9 @@ msgstr "Kullanılan değişken / formül" msgid "Test" msgstr "Sınama" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "İptal" @@ -1723,9 +1722,9 @@ msgstr "Sütun Kaldırılıyor" msgid "Adding Primary Key" msgstr "Birincil Anahtar Ekleniyor" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "TAMAM" @@ -1801,7 +1800,7 @@ msgstr "Siliniyor" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Depolanan işlevin tanımı RETURN ifadesi içermek zorunda!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET düzenleyicisi" @@ -1842,8 +1841,8 @@ msgstr "Sorgu kutusunu göster" msgid "No rows selected" msgstr "Satır seçilmedi" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Değiştir" @@ -1858,7 +1857,7 @@ msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -1891,7 +1890,6 @@ msgid "To zoom in, select a section of the plot with the mouse." msgstr "Yakınlaştırmak için fare ile çizimin bir bölümünü seçin." #: js/messages.php:306 -#| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "" "Orijinal durumuna geri gelmesi için yakınlaştırmayı sıfırla düğmesine " @@ -2052,8 +2050,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm " -"%s, %s tarihinde yayınlandı." +"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %" +"s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version #: js/messages.php:373 @@ -2367,16 +2365,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "%1$s. satırda beklenmedik karakter. Beklenen sekme, ama bulunan \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "saniye başına" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "dakika başına" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "saat başına" @@ -2476,8 +2474,8 @@ msgstr "Anahtara göre sırala" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Seçenekler" @@ -2530,7 +2528,7 @@ msgid "The row has been deleted" msgstr "Satır silindi" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Sonlandır" @@ -2559,27 +2557,27 @@ msgstr "toplam" msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "GIS verisini görselleştir" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "Görünüm oluştur" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Bağlantı bulunamadı" @@ -2655,46 +2653,46 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "Bu kısmı geçmek için Javascript etkinleştirilmiş olmalıdır" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Tanımlı indeks yok!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "İndeksler" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Benzersiz" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Paketlendi" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Önemlilik" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Yorum" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Birincil anahtar kaldırıldı" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "%s indeksi kaldırıldı" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2703,9 +2701,9 @@ msgstr "" "İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün " "olabilir." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Veritabanları" @@ -2715,7 +2713,7 @@ msgstr "Veritabanları" msgid "Server" msgstr "Sunucu" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2728,102 +2726,102 @@ msgstr "Sunucu" msgid "Structure" msgstr "Yapı" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Ekle" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "İşlemler" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "İzleme" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Tetikleyiciler" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Tablo boş olarak görünüyor!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Veritabanı boş olarak görünüyor!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Sorgu" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Yetkiler" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Yordamlar" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Olaylar" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Tasarımcı" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Kullanıcılar" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Eşitle" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binari günlüğü" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Değişkenler" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Karakter Grupları" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Eklentiler" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Motorlar" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Hata" @@ -2862,63 +2860,63 @@ msgstr "Son tablolar" msgid "There are no recent tables" msgstr "Son tablolar yok" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s bu MySQL sunucusunda var." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s bu MySQL sunucusu için etkisizleştirildi." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "bilinmeyen tablo durumu: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "Kaynak veritabanı `%s` bulunamadı!" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, php-format msgid "Target database `%s` was not found!" msgstr "Hedef veritabanı `%s` bulunamadı!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Geçersiz veritabanı" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Geçersiz tablo adı" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tablosu %2$s olarak yeniden adlandırıldı." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Tablo KA tercihleri kaydedilemedi" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2927,7 +2925,7 @@ msgstr "" "Tablo KA tercihlerini temizleme başarısız ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s bakın)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2938,22 +2936,22 @@ msgstr "" "yenilemenizden sonra kalıcı olmayacaktır. Eğer tablo yapısı değiştirilmişse " "lütfen kontrol edin." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "İşlev" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "İşletici" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Değer" @@ -2961,7 +2959,7 @@ msgstr "Değer" msgid "Table Search" msgstr "Tablo Arama" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "Düzenle/Ekle" @@ -3100,20 +3098,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Küçük kayan noktalı bir sayı, izin verilebilir değerler -3.402823466E+38'den " "-1.175494351E-38'e, 0 ve 1.175494351E-38'den 3.402823466E+38'e kadardır" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler " -"-1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve " +"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler -" +"1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve " "2.2250738585072014E-308'den 1.7976931348623157E+308'e kadardır" #: libraries/Types.class.php:311 @@ -3410,8 +3408,8 @@ msgstr "%s'e Hoş Geldiniz" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " "tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." @@ -3528,12 +3526,12 @@ msgstr "Tablolar" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Veri" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Ek Yük" @@ -3646,18 +3644,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL sorgusu" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3745,7 +3743,7 @@ msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakını msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Bilgisayarınıza gözat:" @@ -3755,8 +3753,8 @@ msgstr "Bilgisayarınıza gözat:" msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 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" @@ -3940,7 +3938,7 @@ msgstr "Varsayılan değeri geri yükle" msgid "Allow users to customize this value" msgstr "Bu değeri özelleştirmek için kullanıcılara izin ver" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4234,7 +4232,7 @@ msgid "Character set of the file" msgstr "Dosyanın karakter grubu" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Biçim" @@ -4532,7 +4530,7 @@ msgstr "Rehber çerçeve" msgid "Customize appearance of the navigation frame" msgstr "Rehber çerçevenin görünümünü özelleştirir" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Sunucular" @@ -5889,7 +5887,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "Sorgu kutusunun sunuşundan sonra ekranda kalıp kalmamasını tanımlar" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "Sorgu kutusunu tut" @@ -6224,7 +6222,7 @@ msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin." msgid "possible deep recursion attack" msgstr "olası aşırı özyinelemeli saldırı" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6232,15 +6230,15 @@ msgstr "" "Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak " "yapılandırılmadı)." -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "Sunucu yanıt vermiyor." -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin." -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Ayrıntılar..." @@ -6297,8 +6295,8 @@ msgstr "Tablo oluştur" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Adı" @@ -6399,8 +6397,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 " @@ -6412,7 +6410,7 @@ msgid "use this for future exports" msgstr "ileriki dışa aktarımlar için bunu kullan" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Dosyanın karakter grubu:" @@ -6932,8 +6930,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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." @@ -6995,7 +6993,7 @@ msgstr "Olay" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Tanım" @@ -7056,7 +7054,7 @@ msgstr "MIME türlerini göster" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Anamakine" @@ -7273,8 +7271,8 @@ msgstr "İçerikleri dışa aktar" msgid "No data found for GIS visualization." msgstr "GIS görselleştirmesi için bulunan veri yok." -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)." @@ -7449,77 +7447,77 @@ msgstr "SQL uyumluluk kipi:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Sıfır değerleri için AUTO_INCREMENT değeri kullanma" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Gizle" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "Uzunluğu nedeniyle,
    bu sütun düzenlenebilir olmayabilir" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binari - düzenlemeyiniz" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "web sunucusu gönderme dizini" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "ve sonra" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için " "CTRL+OK TUŞLARI'nı kullanın" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" @@ -7543,7 +7541,7 @@ msgid "To" msgstr "Buraya" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Gönder" @@ -7559,7 +7557,7 @@ msgstr "Ön ek ekle" msgid "Do you really want to execute the following query?" msgstr "Aşağıdaki sorguya çalıştırmak istiyor musunuz?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Değişiklik yok" @@ -7811,7 +7809,7 @@ msgstr "" "Lütfen column_comments tablonuzun nasıl güncelleneceğini öğrenmek için " "belgeye bakın" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "SQL sorgusu işaretlendi" @@ -7864,6 +7862,10 @@ msgstr "" msgid "no description" msgstr "Açıklama yok" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Hiçbirini Seçme" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Slave yapılandırması" @@ -7900,8 +7902,8 @@ msgstr "Master durumu" msgid "Slave status" msgstr "Slave durumu" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Değişken" @@ -7928,7 +7930,7 @@ msgstr "Herhangi kullanıcı" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Metin alanını kullan" @@ -7961,10 +7963,10 @@ msgid "Generate Password" msgstr "Parola Üret" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7975,7 +7977,7 @@ msgstr "Aşağıdaki sorgu başarısız oldu: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "Üzgünüm, kaldırılmış olayı geri yükleme başarısız oldu." -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "Yedeklenmiş sorgu:" @@ -7990,7 +7992,7 @@ msgstr "Olay %1$s değiştirildi." msgid "Event %1$s has been created." msgstr "Olay %1$s oluşturuldu." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:" @@ -7999,14 +8001,14 @@ msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:" msgid "Edit event" msgstr "Olay düzenle" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "İstek işlemede hata" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Ayrıntılar" @@ -8019,7 +8021,7 @@ msgstr "Olay adı" msgid "Event type" msgstr "Olay türü" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "%s'a değiştir" @@ -8046,13 +8048,13 @@ msgstr "Bitiş" msgid "On completion preserve" msgstr "Tamamlamada koruma" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Tanımlayıcı" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Tanımlayıcı \"kullanıcıadı@anamakineadı\" biçiminde olmak zorundadır" @@ -8077,7 +8079,7 @@ msgstr "Olay için geçerli bir tür vermek zorundasınız." msgid "You must provide an event definition." msgstr "Bir olay tanımı vermek zorundasınız." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Yeni" @@ -8097,7 +8099,7 @@ msgstr "Olay zamanlayıcısı durumu" msgid "Returns" msgstr "Dönüşler" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8109,89 +8111,89 @@ msgstr "" "başarısız olabilir![/strong] Lütfen herhangi bir sorundan kaçınmak için " "gelişmiş 'mysqli' uzantısı kullanın." -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Geçersiz yordam türü: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 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." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Yordam %1$s değiştirildi." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Yordam %1$s oluşturuldu." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Yordamı düzenle" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Yordam adı" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Parametreler" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Yön" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Uzunluk/Değerler" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Parametre ekle" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Son parametreyi kaldır" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Dönüş türü" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Dönüş uzunluğu/değerleri" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Dönüş seçenekleri" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Belirleyici" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Güvenlik türü" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL veri erişimi" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Bir yordam adı vermek zorundasınız" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Parametre için geçersiz yön \"%s\" verilmiş." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8199,36 +8201,36 @@ msgstr "" "ENUM, SET, VARCHAR ve VARBINARY türünün yordam parametreleri için uzunluk/" "değerler vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "Her yordam parametresi için bir ad ve bir tür vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "Yordam için geçerli bir dönüş türü vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "Bir yordam tanımı vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "%s yordamı yürütme sonuçları" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Yordamı çalıştır" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Yordam parametreleri" @@ -8511,7 +8513,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Bilinmeyen dil: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Şu Anki Sunucu" @@ -8542,50 +8544,50 @@ msgstr "Hedef veritabanı" msgid "Click to select" msgstr "Seçmek için tıklayın" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Temizle" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 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:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Mevcut aynı ismin işaretlemesini değiştir" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Pencere dışından bu sorgunun üzerine yazma" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Sınırlayıcı" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Bu sorguyu burada tekrar göster" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Sadece göster" @@ -8688,7 +8690,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "İndeks" @@ -8739,12 +8741,12 @@ msgid "As defined:" msgstr "Tanımlandığı gibi:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Birincil" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Tam metin" @@ -8757,12 +8759,12 @@ msgstr "ilk" msgid "after %s" msgstr "%s sonrasına" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "%s sütun ekle" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." @@ -8818,7 +8820,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Bu resmi indirmek için bağlantı görüntüler." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8995,8 +8997,8 @@ msgid "Protocol version" msgstr "Protokol sürümü" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Kullanıcı" @@ -9112,8 +9114,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "phpMyAdmin yapılandırma depolaması tamamiyle yapılandırılmadı, bazı " -"genişletilmiş özellikler etkisizleştirildi. Nedenini öğrenmek için %sburaya" -"%s tıklayın." +"genişletilmiş özellikler etkisizleştirildi. Nedenini öğrenmek için %sburaya%" +"s tıklayın." #: main.php:357 #, php-format @@ -9133,15 +9135,15 @@ msgstr "" "Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sbelgeden%s " "yararlanın." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Veritabanı yok" -#: navigation.php:170 +#: navigation.php:169 msgid "Filter databases by name" msgstr "Veritabanlarını adına göre süz" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "Tabloları adına göre süz" @@ -9162,7 +9164,7 @@ msgstr "Sol menüyü Göster/Gizle" msgid "Save position" msgstr "Konumu kaydet" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Bağlantı oluştur" @@ -9222,37 +9224,37 @@ msgstr "Bağlantılı olmayan Tabloları Gizle/Göster" msgid "Number of tables" msgstr "Tablo sayısı" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Bağlantıyı sil" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "Bağlantı işletici" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "Hariç" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "alt sorgu" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Yeniden şuna adlandır" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Yeni ad" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Topla" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Aktif seçenekler" @@ -9370,8 +9372,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. " -"%sKur programcığı%s kullanarak." +"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. %" +"sKur programcığı%s kullanarak." #: prefs_manage.php:305 msgid "Save to browser's storage" @@ -9416,13 +9418,13 @@ msgstr "Görüntülemek için binari günlüğünü seçin" msgid "Files" msgstr "Dosyalar" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Gösterilen Sorguları Kısalt" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" @@ -9438,7 +9440,7 @@ msgstr "Konum" msgid "Original position" msgstr "Orijinal konum" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Bilgi" @@ -9465,11 +9467,11 @@ msgstr "Master kopya etme" msgid "Slave replication" msgstr "Slave kopya etme" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "İstatistikler etkin" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9722,7 +9724,7 @@ msgid "None" msgstr "Yok" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" @@ -9739,7 +9741,7 @@ msgstr "Yönetim" msgid "Global privileges" msgstr "Genel yetkiler" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" @@ -9759,7 +9761,7 @@ msgstr "Oturum Açma Bilgisi" msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "Kullanıcı bulunamadı." @@ -9808,7 +9810,7 @@ msgstr "Seçili kullanıcılar başarılı olarak silindi." msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Yetkileri düzenle" @@ -9821,7 +9823,7 @@ msgid "Export all" msgstr "Tümünü dışa Aktar" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Herhangi" @@ -9838,79 +9840,79 @@ msgstr "%s için yetkiler" msgid "Users overview" msgstr "Kullanıcılara genel bakış" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Onaylı" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Seçili kullanıcıları kaldır" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Kullanıcılardan tüm aktif yetkileri geri al ve sonra da sil." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Aşağıdaki veritabanına yetkileri ekle" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "_ ve % jokerleri harfi harfine kullanılmak için \\ ile doldurun" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Aşağıdaki tabloya yetkileri ekle" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... eski olanı sakla." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... eski olanı kullanıcı tablolarından sil." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... eski olandan bütün aktif yetkileri iptal et ve sonra da sil." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9918,41 +9920,41 @@ msgstr "" "... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden " "yükle." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Kullanıcı için veritabanı" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr ""%s" veritabanına erişimi olan kullanıcılar" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "genel" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Veritabanına özgü" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "joker" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "Kullanıcı eklendi." @@ -10237,23 +10239,23 @@ msgstr "Sadece uyarı değerlerini göster" msgid "Filter by category..." msgstr "Kategoriye göre süz..." -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "Biçimlendirilmemiş değerleri göster" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "İlgili bağlantılar:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "Çözümleyiciyi çalıştır" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "Talimatlar" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10261,7 +10263,7 @@ msgstr "" "Danışman sistemi sunucu durumu değişkenlerini çözümleyerek sunucu " "değişkenlerinde öneriler sağlayabilir." -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10270,7 +10272,7 @@ msgstr "" "Yine de not edin bu sistem basit hesaplamalar üzerine kurulu ve sisteminize " "zorunlu olarak uygulanamayabilir başlıca kurallara göre öneriler sağlar." -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10281,7 +10283,7 @@ msgstr "" "alacağınızdan emin olun. Yanlış ayarlama performansa çok olumsuz etki " "edebilir." -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10292,31 +10294,31 @@ msgstr "" "iyileştirilme olmadıysa, değişikliği geri almak olacaktır." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "Başlangıçtan bu yana sorular: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "İfadeler" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "#" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "Başlangıçtan bu yana ağ trafiği: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Bu MySQL sunucusunun çalışma süresi: %1$s. Başlatıldığı zaman: %2$s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." @@ -10324,19 +10326,19 @@ msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master ve " "slave olarak çalışır." -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master olarak " "çalışır." -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında slave olarak " "çalışır." -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10344,11 +10346,11 @@ msgstr "" "Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Kopya etme durumu" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10356,35 +10358,35 @@ msgstr "" "Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL " "sunucusu tarafından raporlanan istatistikler doğru olmayabilir." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Alınan" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Gönderilen" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "En fazla eşzamanlı bağlantı" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Başarısız deneme" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "İptal edilen" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Komut" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10392,11 +10394,11 @@ msgstr "" "Bağlantıyı uygun bir şekilde kapatmadan sonlanmış istemcinin durdurulmuş " "bağlantılarının sayısıdır." -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısıdır." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10406,16 +10408,16 @@ msgstr "" "aşmış ve işlemdeki ifadeleri saklamak için geçici dosya kullanmış işlemlerin " "sayısıdır." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısıdır." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısıdır." -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10427,11 +10429,11 @@ msgstr "" "büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olmasına " "sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10439,7 +10441,7 @@ msgstr "" "İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların " "sayısı otomatik olarak oluşturuldu." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10447,7 +10449,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10455,23 +10457,23 @@ msgstr "" "Kullanımda olan INSERT DELAYED işleticisi işlem sayısı. INSERT DELAYED " "komutunu kullanan her farklı tablodan biri kendi işlemini alır." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Tablodan satırın kaç kez silindiği sayısıdır." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10481,7 +10483,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10491,7 +10493,7 @@ msgstr "" "sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, " "SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10500,7 +10502,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10510,7 +10512,7 @@ msgstr "" "aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması " "yapıyorsanız, bu arttırılan miktardır." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10518,7 +10520,7 @@ msgstr "" "Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma " "yöntemi başlıca ORDER BY ... DESC komutunu uyarlamak için kullanılır." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10531,7 +10533,7 @@ msgstr "" "fazla sorgulamalara sahipsiniz ya da anahtarları düzgün kullanılmayan " "birleştirmelere sahipsiniz." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10543,35 +10545,35 @@ msgstr "" "düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz " "indeksleri çıkarına kullanmak için yazmadığında önerilir." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Tablo içinde satır güncellemek için istek sayısıdır." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Tablo içinde satır eklemek için istek sayısıdır." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Temizlenmesi için istenmiş arabellek havuz sayfa sayısıdır." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10581,7 +10583,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10593,11 +10595,11 @@ msgstr "" "zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10605,7 +10607,7 @@ msgstr "" "InnoDB \"rastgele\" önden okuma başlatımı sayısıdır. Sorgu tablonun büyük " "bir kısmını taradığı zaman bu olur ama rastgele düzende." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10613,11 +10615,11 @@ msgstr "" "InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo " "taraması yaptığı zaman bu olur." -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB'nin bitirdiği veya yaptığı mantıksal okuma isteği sayısıdır." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10625,7 +10627,7 @@ msgstr "" "InnoDB'nin arabellek havuzundan tatmin olamadığı ve tek-sayfa okuması yapmak " "zorunda olduğu mantıksal okuma sayısıdır." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10639,55 +10641,55 @@ msgstr "" "durumlarını sayar. Eğer arabellek havuzu boyutu düzgün bir şekilde " "ayarlandıysa, bu değer küçük olmalıdır." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -10695,35 +10697,35 @@ msgstr "" "Sahip olunan bekleme sayısıdır çünkü günlük arabelleği çok küçük ve devam " "etmeden önce temizlenmesi için beklemek zorundayız." -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Günlük dosyasına fiziksel yazma sayısıdır." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Günlük dosyasına bitmiş fsync() yazma sayısıdır." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Günlük dosyasına yazılı bayt sayısıdır." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10731,52 +10733,52 @@ msgstr "" "Derlenen InnoDB sayfa boyutu (varsayılan 16KB). Birçok değer sayfalarda " "sayılır; sayfa boyutu bunların kolaylıkla bayt'a dönüştürülmesine izin verir." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için en fazla süredir." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Satır kilidinin beklemek zorunda kaldığı süre sayısıdır." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -10784,7 +10786,7 @@ msgstr "" "Anahtar önbelleğindeki değiştirilmiş ama diskte henüz temizlenmemiş anahtar " "bloğu sayısıdır. Not_flushed_key_blocks olarak bilinip kullanılır." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -10793,7 +10795,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -10802,15 +10804,15 @@ msgstr "" "Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " "olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." -#: server_status.php:1389 +#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Kullanılan anahtar önbelleği yüzdesidir (hesaplanmış değer)" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Önbellekten anahtar bloğunun okunması için istek sayısıdır." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10820,7 +10822,7 @@ msgstr "" "büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek " "oranı Key_reads/Key_read_requests olarak hesaplanabilir." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10828,21 +10830,21 @@ msgstr "" "Okuma isteklerine nazaran fiziksel okumaların oranı gibi eksik hesaplanan " "anahtar önbelleğidir (hesaplanmış değer)" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Önbelleğe anahtar bloğu yazmak için istek sayısıdır." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Yazma isteklerine nazaran fiziksel yazmaların yüzdesidir (hesaplanmış değer)" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10853,7 +10855,7 @@ msgstr "" "karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu " "olmadığı anlamına gelir." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10861,11 +10863,11 @@ msgstr "" "Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " "bağlantı sayısı." -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10873,19 +10875,19 @@ msgstr "" "Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek " "değeriniz muhtemelen çok küçüktür." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "Açık olan akış sayısıdır (başlıca günlükleme için kullanılır)." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10895,19 +10897,19 @@ msgstr "" "QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " "edebilir." -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10919,7 +10921,7 @@ msgstr "" "yardımcı olabilir. Önbellekten hangi sorguların kaldırılacağına karar vermek " "için sorgu önbelleği en az son kullanılmış (LRU) stratejisini kullanır." -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10927,19 +10929,19 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10947,11 +10949,11 @@ msgstr "" "İndeksler kullanmayan birleştirme sayısıdır. Eğer bu değer 0 değilse, " "tablolarınızın indekslerini dikkatli olarak kontrol etmelisiniz." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "Referans tablosunda aralık araması kullanan birleştirme sayısıdır." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10960,7 +10962,7 @@ msgstr "" "birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini " "dikkatli olarak kontrol etmelisiniz.)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10968,15 +10970,15 @@ msgstr "" "İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak " "kusurlu değildir, eğer büyükse bile.)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "İlk tablonun tam taramasının yapıldığı birleştirme sayısıdır." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Slave SQL işlemi tarafından şu anki açık geçici tablo sayısıdır." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10984,11 +10986,11 @@ msgstr "" "Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam " "(başlangıçtan beri) süre sayısıdır." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Eğer sunucu master'a bağlı slave ise, bu AÇIKTIR." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10996,12 +10998,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Long_query_time saniyeden daha uzun zaman almış sorgu sayısıdır." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11011,23 +11013,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "düşünmelisiniz." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "Taranan tablo tarafından yapılmış sıralama sayısıdır." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11039,7 +11041,7 @@ msgstr "" "uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya " "etmeyi kullanın." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11049,11 +11051,11 @@ msgstr "" "Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı " "ise, thread_cache_size boyutunuzu yükseltmelisiniz." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11065,47 +11067,47 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: server_status.php:1431 +#: server_status.php:1432 msgid "Thread cache hit rate (calculated value)" msgstr "İşlem önbelleği tavan oranı (hesaplanmış değer)" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "İzlemeyi başlat" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "Yönergeler/Ayarlama" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "Çizelgeleri düzenlemeyi/yeniden düzeltmeyi bitir" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "Çizelge ekle" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "Çizelgeleri düzenle/yeniden düzelt" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "Oranı yenile" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "Çizelge sütunları" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "Çizelge ayarlaması" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11113,15 +11115,15 @@ msgstr "" "Çizelgelerin ayarlanması tarayıcının yerel deposunda saklanır. Eğer karışık " "ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz." -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "Varsayılana sıfırla" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "İzleme Yönergeleri" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11135,7 +11137,7 @@ msgstr "" "etkinleştirilir. Ancak unutmayın, general_log çok fazla veri üretir ve " "sunucu yükünü %15'e kadar arttırır" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11147,11 +11149,11 @@ msgstr "" "günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala " "sunucu çizelgeleme özelliklerini kullanabilirsiniz." -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "İzleyici kullanımı:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11162,7 +11164,7 @@ msgstr "" "değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " "kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11175,11 +11177,11 @@ msgstr "" "yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " "ifadesine tıklayabilirsiniz." -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "Lütfen unutmayın:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11192,85 +11194,85 @@ msgstr "" "etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla " "izlemeyi gerektirmez." -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "Hazır çizelge" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "Durum değişkeni(leri)" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "Dizi seç:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "Genellikle izlenen" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "veya değişken adını yazın:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "Ayırtedici değer olarak görüntüle" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "Böleni uygula" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "Veri değerlerine birimi ekle" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "Bu diziyi ekle" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "Diziyi temizle" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "Çizelgedeki Dizi:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "Günlük istatistikleri" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "Seçili zaman aralığı:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Daha iyi gruplama için INSERT ifadelerindeki değişken veriyi kaldır" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "İstatistiklerin oluşturulmasını istediğiniz yerden günlüğü seçin." -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "Sonuçlar sorgu metnine göre gruplandırılır." -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "Sorgu çözümleyici" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d saniye" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11677,9 +11679,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:312 @@ -11694,8 +11696,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:314 @@ -12048,35 +12050,35 @@ msgstr "İlgili bütünlük kontrolü:" msgid "Showing tables" msgstr "Tablolar gösteriliyor" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Alan kullanımı" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Etkili" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Satır İstatistikleri" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "sabit" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "değişken" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Satır uzunluğu" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Satır boyutu" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "Sonraki otoindeks" @@ -12102,7 +12104,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Dış anahtar kısıtlaması" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "Uzaysal" @@ -12152,49 +12154,49 @@ msgstr "%s üzerinde bir indeks eklendi" msgid "Show more actions" msgstr "Daha fazla eylem göster" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 msgid "Move columns" msgstr "Sütunları taşı" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "Sütunları yukarı ve aşağı sürükleyerek taşıyın." -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "Düzenleme görünümü" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Bağlantı görünümü" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Tablo yapısı öner" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "Sütun ekle" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Tablonun Sonuna" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Tablonun Başına" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s Şunun Sonrasına" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr " %s sütunda indeks oluştur" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "bölüme ayrıldı" @@ -12724,8 +12726,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Boş sorgu önbellek belleğinin, toplam sorgu önbelleği boyutuna şu anki oranı " "%%%s. Bu %%80'in üzerinde olmalıdır" @@ -12876,8 +12878,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "Tüm sıralamaların %%%s'i geçici tablolara sebep olur, bu değer %%10'dan " "düşük olmalıdır." @@ -13793,12 +13795,12 @@ msgstr "concurrent_insert 0'a ayarlı" #~ "Eğer D işlenirse, varsayılan 0'dır. Eğer M işlenirse, varsayılan 10'dur." #~ msgid "" -#~ "A small (single-precision) floating-point number. Allowable values are " -#~ "-3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to " +#~ "A small (single-precision) floating-point number. Allowable values are -" +#~ "3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to " #~ "3.402823466E+38." #~ msgstr "" -#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler " -#~ "-3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den " +#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler -" +#~ "3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den " #~ "3.402823466E+38'e." #~ msgid "" diff --git a/po/tt.po b/po/tt.po index a5a7e216fb..dc9e84c317 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -38,53 +38,54 @@ msgstr "" "bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp " "tora." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Ezläw" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Äydä" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Tezeş adı" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Açıqlama" @@ -115,13 +116,13 @@ msgstr "Biremlek açıqlaması: " msgid "Table comments" msgstr "Tüşämä açıqlaması" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Tüşämä açıqlaması" msgid "Column" msgstr "Alan iseme" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Töre" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Bonı belän bäyläneş:" msgid "Comments" msgstr "Açıqlama" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Açıqlama" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Yuq" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Yuq" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Biremlek eçtälegen (tözeleşen) çığaru" msgid "No tables found in database." msgstr "Bu biremlektä ber genä dä tüşämä yuq." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Saylap Beter" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Saylanunı Töşer" @@ -326,12 +327,12 @@ msgstr "Çikläwlär östise" msgid "Switch to copied database" msgstr "Kübäytelgän biremlekkä küçäse" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Tezü cayı" @@ -359,17 +360,17 @@ msgstr "Bäyläneşlär sxeme" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tüşämä" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Kerem" @@ -384,21 +385,21 @@ msgstr "totıla" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Yasalışı" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Soñğı yañartılu" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Soñğı tikşerü" @@ -462,7 +463,7 @@ msgid "Del" msgstr "Sal" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Yä" @@ -507,90 +508,90 @@ msgstr "Sorawnı Yulla" msgid "Access denied" msgstr "İreşep Bulmadı" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "berärse bulsa" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "barısı da bulsa" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "tulı tezmä, tögäl kileş" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "regexp kileş" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" ezläw näticäse %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s kileşü bar, %s atlı tüşämädä" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Küzätü" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Dumping data for table" -msgid "Delete the matches for the %s table?" -msgstr "Tüşämä eçtälegen çığaru" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Sal" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Tulayım: %s kileşü" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s kileşü bar, %s atlı tüşämädä" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Küzätü" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Dumping data for table" +msgid "Delete the matches for the %s table?" +msgstr "Tüşämä eçtälegen çığaru" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Sal" + +#: db_search.php:362 msgid "Search in database" msgstr "Biremlektä ezläw" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Tabası süz/bäyä tezmäse (almaşbilgese: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Ezläw:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Kiläse tüşämä eçendä:" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -633,8 +634,8 @@ msgstr "" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -642,7 +643,7 @@ msgstr "" msgid "View" msgstr "Qaraş" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 #, fuzzy @@ -653,98 +654,94 @@ msgstr "Bäyläneşlär" msgid "Sum" msgstr "Sum" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Saylanğannı:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Saylap Beter" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Saylanunı Töşer" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Check overheaded" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Buşat" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Beter" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Tüşämä tikşerü" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Tüşämä tözätü" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Tüşämä centekläw" -#: db_structure.php:717 +#: db_structure.php:712 #, fuzzy msgid "Add prefix to table" msgstr "Biremleklär yuq" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Eçtälek Süzlege" @@ -758,9 +755,9 @@ msgstr "Tüşämä tikşerü" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Biremlek" @@ -779,17 +776,17 @@ msgstr "Yarat" msgid "Updated" msgstr "" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Torış" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Eş" @@ -824,7 +821,7 @@ msgstr "Tözeleşen genä" msgid "Untracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 #, fuzzy msgid "Track table" msgstr "Tüşämä tikşerü" @@ -977,8 +974,8 @@ msgstr "" #: import.php:86 #, 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 "" #: import.php:224 import.php:464 @@ -1041,13 +1038,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL-sorawıñ uñışlı eşkärtelde" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Kire" @@ -1145,8 +1142,8 @@ msgstr "Sersüzeñ buş!" msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1170,7 +1167,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1200,13 +1197,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Tulayım" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1238,7 +1235,7 @@ msgstr "Server Saylaw" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Proseslar" @@ -1309,13 +1306,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1377,7 +1374,7 @@ msgstr "" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Totaşular" @@ -1418,11 +1415,11 @@ msgstr "%s tüşämä" msgid "Questions" msgstr "Farsíça" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Taşım" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1449,8 +1446,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Buş" @@ -1550,7 +1547,7 @@ msgstr "Bäyläneşlär buyınça töp mömkinleklär" msgid "Current settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1638,7 +1635,7 @@ msgstr "SQL Centekläw" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Waqıt" @@ -1745,10 +1742,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Yökläw" @@ -1804,9 +1801,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "" @@ -1837,9 +1834,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1945,7 +1942,7 @@ msgstr "\"%s\" Beterü" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1987,8 +1984,8 @@ msgstr "SQL-soraw" msgid "No rows selected" msgstr "Kertemnär sayladı" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Üzgärt" @@ -2003,7 +2000,7 @@ msgid "%d is not valid row number." msgstr "%d digäne yazma sanı öçen kileşmi." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2574,16 +2571,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "sekund sayın" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "minut sayın" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "säğät sayın" @@ -2700,8 +2697,8 @@ msgstr "Qullanası tezeş" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 #, fuzzy msgid "Options" msgstr "Eşkärtü" @@ -2764,7 +2761,7 @@ msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Üter" @@ -2791,30 +2788,30 @@ msgstr "tulayım" msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Bäyläneş tabılmadı" @@ -2884,56 +2881,56 @@ msgstr "" msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Açqıç bilgelänmäde!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Tezeşlär" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Qabatsız" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Qabatlanu sanı" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" msgstr "Açıqlama" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Töp açqıç beterelde" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "\"%s\" digän tezeş salındı" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Biremleklär" @@ -2943,7 +2940,7 @@ msgstr "Biremleklär" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2956,105 +2953,105 @@ msgstr "Server" msgid "Structure" msgstr "Tözeleş" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Östäw" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Eşkärtü" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Soraw" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Xoquqlar" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Cibärelde" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Qullanuçı" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binar köndälek" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Üzgärmälär" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Bilgelämä" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Engine" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Xata" @@ -3103,72 +3100,72 @@ msgstr "Berär genä dä tüşämä yuq" msgid "There are no recent tables" msgstr "Tüşämä tikşerü" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "Bu MySQL serverdä %s bar." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Bu MySQL serverdä %s sünderelgän bulğan." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL server %s saqlaw enginen totmí." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Biremlektä ezläw: " -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "%s digän tışlaw tabılmadı!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Yaraqsız biremlek" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Tüşämä adı yaraqsız" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "\"%s\" tüşämäse \"%s\" itep ataldı" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3176,22 +3173,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funksí" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Bäyä" @@ -3201,7 +3198,7 @@ msgstr "Bäyä" msgid "Table Search" msgstr "Ezläw" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3337,14 +3334,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3603,8 +3600,8 @@ msgstr "%s siña İsäñme di" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3715,12 +3712,12 @@ msgstr "Tüşämä" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Eçtälek" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Overhead" @@ -3833,18 +3830,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-soraw" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3934,7 +3931,7 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3945,8 +3942,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí" @@ -4142,7 +4139,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4425,7 +4422,7 @@ msgid "Character set of the file" msgstr "Şul biremneñ bilgelämäse:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Tözeleş" @@ -4750,7 +4747,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Serverlär" @@ -6039,7 +6036,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy msgid "Retain query box" msgstr "SQL-soraw" @@ -6353,7 +6350,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6361,17 +6358,17 @@ msgid "" "configured)." msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Bu server endäşmi" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6431,8 +6428,8 @@ msgstr "Yaña Bit yaratu" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Adı" @@ -6555,8 +6552,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:285 @@ -6564,7 +6561,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Şul biremneñ bilgelämäse:" @@ -7065,8 +7062,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7142,7 +7139,7 @@ msgstr "Cibärelde" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7217,7 +7214,7 @@ msgstr "Barlıq MIME-törlär" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Host" @@ -7428,8 +7425,8 @@ msgstr "Çığaru ısulı" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." @@ -7598,80 +7595,80 @@ msgstr "SQL, kileşterü ısulı" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Because of its length,
    this field might not be editable" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Binar - üzgärtmäslek" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "web-server'neñ yökläw törgäge" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr ", şunnan soñ" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü " "öçen, CTRL+uq töymäläre bar" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7699,7 +7696,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Künder" @@ -7717,7 +7714,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Üzgäreşsez" @@ -7971,7 +7968,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Sineñ Column_comments Tüşämä yañartu eşe turında Qullanmada qarísı" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Tamğalanğan SQL-soraw" @@ -8018,6 +8015,10 @@ msgstr "" msgid "no description" msgstr "Açıqlamasız" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Saylanunı Töşer" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -8053,8 +8054,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Üzgärmä" @@ -8079,7 +8080,7 @@ msgstr "Törle qullanuçı" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Bu mätennän" @@ -8110,10 +8111,10 @@ msgid "Generate Password" msgstr "Sersüz Ürçetü" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8124,7 +8125,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8140,7 +8141,7 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Event %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8150,16 +8151,16 @@ msgstr "" msgid "Edit event" msgstr "Cibärelde" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proseslar" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -8174,7 +8175,7 @@ msgstr "Buldıq töre" msgid "Event type" msgstr "Buldıq töre" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8209,13 +8210,13 @@ msgstr "Azaq" msgid "On completion preserve" msgstr "Tulayım östise" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8240,7 +8241,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8262,7 +8263,7 @@ msgstr "" msgid "Returns" msgstr "Tüşämä köyläneşe" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8270,139 +8271,139 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format msgid "Routine %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Alan iseme" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Yasalışı" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Ozınlıq/Bäyä*" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Biremlekne bolay atap quy" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Ozınlıq/Bäyä*" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tüşämä köyläneşe" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Soraw töre" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Eçke funksílar eşlätterergä birä." -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8726,7 +8727,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Belgesez tel: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8761,53 +8762,53 @@ msgstr "Biremlektä ezläw: " msgid "Click to select" msgstr "" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "%s digän serverdä SQL-soraw eşlätü" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "%s biremlegendä eşlätäse SQL-soraw" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" msgstr "Täqwim" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Şulay uq atalğan bitbilgelärne almaştırası" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Bu sorawnı, täräzä tışında bulğanı belän almaştırası tügel" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Bu sorawnı qabat kürsätäse" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Kürep kenä" @@ -8868,8 +8869,8 @@ 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." +"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_common.inc.php:53 #, php-format @@ -8903,7 +8904,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Tezeş" @@ -8958,12 +8959,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Töp" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Tulımäten" @@ -8977,13 +8978,13 @@ msgstr "" msgid "after %s" msgstr "%s artınnan" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s alan östäw" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9044,7 +9045,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Displays a link to this image (direct blob download, i.e.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9244,8 +9245,8 @@ msgid "Protocol version" msgstr "Protokol söreme" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Qullanuçı" @@ -9373,17 +9374,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Biremleklär yuq" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "tüşämä adı" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9407,7 +9408,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 #, fuzzy msgid "Create relation" msgstr "Server söreme" @@ -9474,47 +9475,47 @@ msgstr "" msgid "Number of tables" msgstr "Alannar sanı" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy msgid "Relation operator" msgstr "Bäyläneşkä küzätü" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Export" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "sorawda" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy msgid "Rename to" msgstr "Tüşämä adın üzgärtü" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "İreşü iseme" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Yarat" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9696,13 +9697,13 @@ msgstr "Qaraw öçen binar köndälek saylaw" msgid "Files" msgstr "Alan" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Sorawnı Qısqartıp Kürsätäse" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" @@ -9718,7 +9719,7 @@ msgstr "Urın" msgid "Original position" msgstr "Tärtip buyınça urın" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Beleşmä" @@ -9746,11 +9747,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Nöfüsne Cibärü" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10001,7 +10002,7 @@ msgid "None" msgstr "Buş" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" @@ -10018,7 +10019,7 @@ msgstr "İdärä" msgid "Global privileges" msgstr "Töp xoquq" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" @@ -10038,7 +10039,7 @@ msgstr "Kereş Turında" msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10089,7 +10090,7 @@ msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Xoquqlar Üzgärtü" @@ -10104,7 +10105,7 @@ msgid "Export all" msgstr "Export" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Törle" @@ -10126,120 +10127,120 @@ msgstr "Xoquqlar" msgid "Users overview" msgstr "Qullanuçılar tezmäse" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Xoquq" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Saylanğan qullanuçı beterü" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Kiläse biremlek öçen xoquqlar östäw" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "_ belän % bilgelären şul kileş kenä qullanu öçen \\ belän ütkärergä kiräk" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Qullanuçı biremlege" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "ğömümi" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "almaşbilge" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10523,50 +10524,50 @@ msgstr "Açıq tüşämä tezmäse" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Bäyläneşlär" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Soraw töre" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "Funksí" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10574,118 +10575,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Cömlä" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 #, fuzzy msgid "Replication status" msgstr "Bäyläneşlär" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Alındı" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Cibärelde" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Özderelde" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Ämer" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10693,78 +10694,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10772,7 +10773,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10780,43 +10781,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10824,33 +10825,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10859,92 +10860,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1359 +#: server_status.php:1360 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1362 +#: server_status.php:1363 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:1368 +#: server_status.php:1369 #, fuzzy msgid "The number of physical writes to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1369 +#: server_status.php:1370 #, fuzzy msgid "The number of fsync() writes done to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10953,161 +10954,161 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Yöklänğan birem tözeleşe" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 #, fuzzy msgid "The number of physical writes of a key block to disk." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11115,99 +11116,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11215,18 +11216,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11234,71 +11235,71 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Tezeş alxätere" -#: server_status.php:1432 +#: server_status.php:1433 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şmb" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s alan östäw" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Yañart" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11307,7 +11308,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11315,18 +11316,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11334,11 +11335,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11346,99 +11347,99 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Biremlekne bolay atap quy" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Tüşämä Saylaw" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Tüşämä adı yaraqsız" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy msgid "Add this series" msgstr "Yaña qullanuçı östäw" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy msgid "Series in Chart:" msgstr "SQL-soraw" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy msgid "Log statistics" msgstr "Kerem Nöfüse" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Tüşämä Saylaw" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Soraw töre" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "sekund sayın" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12211,35 +12212,35 @@ msgstr "Bäyläneşlärne döreslekkä tikşerü:" msgid "Showing tables" msgstr "Tüşämälär kürsätäse" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Totılğan Alan" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Uñışlı" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Kerem Nöfüse" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "üzgärüçän" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Kerem ozınlığı" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Kerem olılığı" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -12264,7 +12265,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12320,56 +12321,56 @@ msgstr "\"%s\" öçen ber açqıç qorıldı" msgid "Show more actions" msgstr "PHP turında" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "%s alan östäw" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Bastıru küreneşe" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Bäyläneşkä küzätü" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Tüşämä tözeleşenä küzätü" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s alan östäw" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Tüşämä azağına" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Tüşämä Başına" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "%s artınnan" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "%s alannan tezeş yaratu" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12893,8 +12894,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13026,8 +13027,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ug.po b/po/ug.po index e6f5df4080..c5cd0a88b9 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:16+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -40,53 +40,54 @@ msgstr "" "كۆزنەكنى يىڭىلاشقا ئامالسىز،سىز بەلكەم باش كۆزنەكنى تاقىۋەتكەن بۇلىشىڭىز " "ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "ئىزدەش" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "ئىجرا قىلىش" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "قىممەت ئىسمى" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "ئىزاھات" @@ -117,13 +118,13 @@ msgstr "ساندان ئىزاھاتى: " msgid "Table comments" msgstr "جەدۋەل ئىزاھى" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "جەدۋەل ئىزاھى" msgid "Column" msgstr "سۆزلەم" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "تۈرى" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "ئۇلانما" msgid "Comments" msgstr "ئىزاھلار" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "ئىزاھلار" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "يوق" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "يوق" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "ساندان قالدۇقىنى كۆرسىتىش" msgid "No tables found in database." msgstr "سانداندا جەدۋەل يوق" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "ھەممىنى تاللاش" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "تاللاشنى قالدۇرۇش" @@ -323,12 +324,12 @@ msgstr "مەجبۇرى قوشۇش" msgid "Switch to copied database" msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "تاسقاش" @@ -339,8 +340,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: db_operations.php:639 #, fuzzy @@ -353,17 +354,17 @@ msgstr "PDF تىزىىسىنى كۆرسىتىش" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "جەدۋەل" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "سەپ سانى" @@ -378,21 +379,21 @@ msgstr "ئىشلىتىلمەكتە" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "قۇرۇش" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "ئاخىرقى يېڭلىنىش" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "ئاخىرقى تەكشۈرۈش" @@ -454,7 +455,7 @@ msgid "Del" msgstr "ئۆچۈرۈش" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ياكى" @@ -495,90 +496,90 @@ msgstr "تاپشۇرۇش" msgid "Access denied" msgstr "رەت قىلىندى" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "سۆزلەردىن ئەڭ ئازدىن بىرى" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "بارلىق سۆزلەر" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "ئېنىق ماسلىق" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "مۇنتىزىم ئىپادە" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" نىڭ ئىزلەش نەتىجىسى %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "كۆزەت" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Delete tracking data for this table" -msgid "Delete the matches for the %s table?" -msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "ئۆچۈرۈش" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "جەمئىي: %s ئوخشاشلىق" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "كۆزەت" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Delete tracking data for this table" +msgid "Delete the matches for the %s table?" +msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "ئۆچۈرۈش" + +#: db_search.php:362 msgid "Search in database" msgstr "سانداندىن ئىزدەش" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "ئىزدەشكە تىگىشلىك خەت ياكى قىقىممىتى(دەرىجىسى:«%»" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "تاپقىنى:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "ھەر بىر تاق سۆزنى (\" \") بەلگىسى ئارقىلىق ئايرىڭ." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "ئىچىدىكى سۆزلەم:" @@ -619,8 +620,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -628,7 +629,7 @@ msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆ msgid "View" msgstr "قاراش" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -638,95 +639,91 @@ msgstr "كۆچۈرۈش" msgid "Sum" msgstr "جەمئىي" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "تاللانغىنى:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "ھەممىنى تاللاش" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "تاللاشنى بىكار قىلىش" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "چىقىرىش" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "تازىلاش" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "ئۆچۈرۈش" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "جەدۋەل تەكشۈرۈش" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "جەدۋەلنى ئەلالاش" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "جەدۋەلنى ئوڭشاش" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "جەدۋەل تەھلىلى" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Repair table" msgid "Replace table prefix" msgstr "جەدۋەلنى ئوڭشاش" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "مەلۇمات لۇغىتى" @@ -739,9 +736,9 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "ساندان" @@ -758,17 +755,17 @@ msgstr "قۇرۇش" msgid "Updated" msgstr "يېڭلاش" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "ھالەت" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "ئامال" @@ -800,7 +797,7 @@ msgstr "تۈزۈلمە رەسىمى" msgid "Untracked tables" msgstr "ئىزلانمىغان جەدۋەللەر" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "جەدۋەل ئىزلاش" @@ -949,8 +946,8 @@ msgstr "" #: import.php:86 #, 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 ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." @@ -1015,13 +1012,13 @@ msgid "" msgstr "" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "قايتىش" @@ -1119,8 +1116,8 @@ msgstr "پارول بوشكەن!" msgid "The passwords aren't the same!" msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Add %s" msgid "Add user" @@ -1142,7 +1139,7 @@ msgid "Close" msgstr "" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1173,13 +1170,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "يىغىندىسى" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1211,7 +1208,7 @@ msgstr "مۇلازىمىتېر تاللاش" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1279,13 +1276,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KiB" @@ -1343,7 +1340,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1386,11 +1383,11 @@ msgstr "%s جەدۋەل" msgid "Questions" msgstr "نەشىر" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1417,8 +1414,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "يوق" @@ -1517,7 +1514,7 @@ msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" msgid "Current settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1608,7 +1605,7 @@ msgstr "SQL ئىزاھى" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "ۋاقىت" @@ -1716,10 +1713,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "كىرگۈزۈش" @@ -1779,9 +1776,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "بىكار قىلىش" @@ -1809,9 +1806,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "" @@ -1911,7 +1908,7 @@ msgstr "ئۆچۈرۈش" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1953,8 +1950,8 @@ msgstr "SQL سورىقى" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "ئۆزگەرتتىش" @@ -1969,7 +1966,7 @@ msgid "%d is not valid row number." msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2494,16 +2491,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2616,8 +2613,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2672,7 +2669,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2701,31 +2698,31 @@ msgstr "ئۇمۇمىي" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "بېسىپ چىقىرش كۈرۈلمىسى" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "ئۇلىنىشنى تاپالمىدى" @@ -2798,55 +2795,55 @@ msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ msgid "Javascript must be enabled past this point" msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "index قىممىتى بەلگىلەنمىگەن!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "تېزىسلار" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "بىردىنبىر" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "ئىخچام" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "تۈپ سان" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "ئىزاھات" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "ئۆچۈرۈلگەن تېزىسلار %s" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "ساندان" @@ -2856,7 +2853,7 @@ msgstr "ساندان" msgid "Server" msgstr "مۇلازىمىتېر" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2869,102 +2866,102 @@ msgstr "مۇلازىمىتېر" msgid "Structure" msgstr "تۈزۈلىشى" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "قىستۇرۇش" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "ئىشلەملەر" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "ئىز قۇغلاش" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "سانلىق مەلۇمات ئامبىرى قۇرۇق" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "تەكشۈرۈش" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "ھۇقۇقى" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "دائىملىق" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "ھادىسە" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "لايىھەلىگۈچ" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "خاتالىق" @@ -3009,72 +3006,72 @@ msgstr "ئىزلانغان جەدۋەل" msgid "There are no recent tables" msgstr "ئىزلانغان جەدۋەل" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇرلار مەۋجۇت ئەمەس." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولىدۇ." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولمايدۇ." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "تېما %s تېپىلمىدى!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "ئۈنۈمسىز ساندان" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى." -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3082,22 +3079,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -3107,7 +3104,7 @@ msgstr "" msgid "Table Search" msgstr "ئىزدەش" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3237,14 +3234,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3502,8 +3499,8 @@ msgstr "%s خۇش كەلدىڭىز" #: libraries/auth/config.auth.lib.php:98 #, 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 "" #: libraries/auth/config.auth.lib.php:110 @@ -3612,12 +3609,12 @@ msgstr "" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "سانلىق مەلۇمات" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "ئېغىر يۈك" @@ -3730,18 +3727,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL سورىقى" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3833,7 +3830,7 @@ msgstr "" msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -3844,8 +3841,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" @@ -4033,7 +4030,7 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4302,7 +4299,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "فورماتلاش" @@ -4609,7 +4606,7 @@ msgstr "" msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "" @@ -5838,7 +5835,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "SQL query" msgid "Retain query box" @@ -6158,7 +6155,7 @@ msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىن msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6166,17 +6163,17 @@ msgid "" "configured)." msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "مۇلازىمىتېردا ئىنكاس يوق" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "تەپسىلاتلار..." @@ -6233,8 +6230,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "ئىسمى" @@ -6353,8 +6350,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:285 @@ -6362,7 +6359,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "ھۆججەتنىڭ ھەرىپ-بەلگە توپلىمى" @@ -6847,8 +6844,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6922,7 +6919,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -6993,7 +6990,7 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "ئاساسىي ماشىنا" @@ -7197,8 +7194,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7368,75 +7365,75 @@ msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "كېيىن" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7462,7 +7459,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7480,7 +7477,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7730,7 +7727,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7777,6 +7774,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "تاللاشنى بىكار قىلىش" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7811,8 +7812,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7837,7 +7838,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7868,10 +7869,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7882,7 +7883,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7899,7 +7900,7 @@ msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" msgid "Event %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7910,14 +7911,14 @@ msgstr "" msgid "Edit event" msgstr "مەجبۇرى قوشۇش" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -7934,7 +7935,7 @@ msgstr "قىممەت ئىسمى" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7964,13 +7965,13 @@ msgstr "ئاخىرقىسى" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7995,7 +7996,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8017,7 +8018,7 @@ msgstr "" msgid "Returns" msgstr "تۈرگە قايتىش" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8025,139 +8026,139 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "View %s has been dropped" msgid "Routine %1$s has been modified." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "قۇرۇش" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "تۈرگە قايتىش" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Action" msgid "Return options" msgstr "ئامال" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Return type" msgid "Security type" msgstr "تۈرگە قايتىش" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8477,7 +8478,7 @@ msgstr "" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Server" msgid "Current Server" @@ -8510,50 +8511,50 @@ msgstr "" msgid "Click to select" msgstr "بىر چىكىپ تاللاڭ" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8637,7 +8638,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8684,12 +8685,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8702,12 +8703,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "" @@ -8752,7 +8753,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8906,8 +8907,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -9007,8 +9008,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:357 #, php-format @@ -9024,17 +9025,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9057,7 +9058,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9119,49 +9120,49 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr ".باغلانمىلار ئۆچۈرۈلدى" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "چىقىرىش" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "Query" msgid "subquery" msgstr "تەكشۈرۈش" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename database to" msgid "Rename to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "Keyname" msgid "New name" msgstr "قىممەت ئىسمى" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "قۇرۇش" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Action" msgid "Active options" @@ -9329,13 +9330,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9351,7 +9352,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -9379,11 +9380,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9623,7 +9624,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9640,7 +9641,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9660,7 +9661,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9709,7 +9710,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9724,7 +9725,7 @@ msgid "Export all" msgstr "چىقىرىش" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9744,115 +9745,115 @@ msgstr "ھۇقۇقى" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10127,47 +10128,47 @@ msgstr "" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "مۇناسىۋىتى" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "تەكشۈرۈش" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10175,115 +10176,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "بۇيرۇق" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10291,78 +10292,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10370,7 +10371,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10378,42 +10379,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10421,33 +10422,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10456,244 +10457,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10701,99 +10702,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10801,18 +10802,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10820,68 +10821,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "دائىملىق" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "يېڭلاش" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10890,7 +10891,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10898,18 +10899,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10917,11 +10918,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10929,98 +10930,98 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select All" msgid "Select series:" msgstr "ھەممىنى تاللاش" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Routines" msgid "Add this series" msgstr "دائىملىق" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "ھەممىنى تاللاش" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "تەكشۈرۈش" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "سېكنۇت" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11776,35 +11777,35 @@ msgstr "" msgid "Showing tables" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11827,7 +11828,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11879,53 +11880,53 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add/Delete columns" msgid "Move columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "بېسىپ كۆرسىتىش" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12449,8 +12450,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12581,8 +12582,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/uk.po b/po/uk.po index b347998fdb..fb952766a2 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:22+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" -"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" +"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" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -39,53 +39,54 @@ msgstr "" "вікно, або налаштування безпеки Вашого оглядача блокують між-віконні " "оновлення." -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Шукати" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "Вперед" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Ім'я ключа" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Опис" @@ -118,13 +119,13 @@ msgstr "Коментар бази даних: " msgid "Table comments" msgstr "Коментарі таблиці" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -133,30 +134,30 @@ msgstr "Коментарі таблиці" msgid "Column" msgstr "Стовпчик" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -194,8 +195,8 @@ msgstr "Лінки до" msgid "Comments" msgstr "Коментарі" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -204,15 +205,15 @@ msgstr "Коментарі" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ні" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -227,8 +228,8 @@ msgstr "Ні" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -243,11 +244,11 @@ msgstr "Переглянути дамп (схему) БД" msgid "No tables found in database." msgstr "В БД не виявлено таблиць." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Відмітити все" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Зняти всі відмітки" @@ -324,12 +325,12 @@ msgstr "Додати constraints" msgid "Switch to copied database" msgstr "Перейти до скопійованої бази даних" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Порівняння" @@ -352,17 +353,17 @@ msgstr "Редагувати або експортувати схему зв'я #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Таблиця" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Рядки" @@ -377,21 +378,21 @@ msgstr "використовується" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Створення" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Останнє оновлення" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Перевірено" @@ -455,7 +456,7 @@ msgid "Del" msgstr "Видалити" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Або" @@ -496,61 +497,28 @@ msgstr "Виконати запит" msgid "Access denied" msgstr "Доступ заборонено" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "принаймі одне з слів" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "всі слова" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "точну фразу" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "як регулярний вираз" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результати пошуку для \"%s\" %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s співпадіння у таблиці %s" -msgstr[1] "%s співпадіння у таблиці %s" -msgstr[2] "%s співпадінь у таблиці %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Переглянути" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "Видалити співпадіння для таблиці %s ?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Видалити" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -558,27 +526,60 @@ msgstr[0] "Всього: %s співпадіння" msgstr[1] "Всього: %s співпадань" msgstr[2] "Всього: %s співпадань" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s співпадіння у таблиці %s" +msgstr[1] "%s співпадіння у таблиці %s" +msgstr[2] "%s співпадінь у таблиці %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Переглянути" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "Видалити співпадіння для таблиці %s ?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Видалити" + +#: db_search.php:362 msgid "Search in database" msgstr "Шукати в базі даних" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова чи значення, які потрібно знайти (шаблон: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Знайти:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Слова розділені пробілом (\" \")." -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "Всередині таблиць:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "Всередині стовпчика:" @@ -617,18 +618,18 @@ msgstr "Трекінг не активний." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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." +"Вигляд має щонайменше цю кількість рядків. Будь-ласка звернітся до %" +"sдокументації%s." #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 #: libraries/tbl_info.inc.php:59 tbl_structure.php:210 msgid "View" msgstr "Вигляд" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -638,93 +639,89 @@ msgstr "Реплікація" msgid "Sum" msgstr "Всього" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s механізм зберігання за замовчуванням на цьому MySQL сервері." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "З відміченими:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Відмітити все" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Зняти усі відмітки" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Перевірити чи мають таблиці накладні витрати" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Очистити" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Знищити" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Перевірити таблицю" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Оптимізувати таблицю" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Ремонтувати таблицю" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Аналіз таблиці" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "Додати префікс до таблиці" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Замінити префікс таблиці" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Копіювати таблицю з префіксом" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Словник даних" @@ -737,9 +734,9 @@ msgstr "Відслідковувані таблиці" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "БД" @@ -756,17 +753,17 @@ msgstr "Створено" msgid "Updated" msgstr "Оновлено" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Статус" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Дія" @@ -800,7 +797,7 @@ msgstr "Знімок структури" msgid "Untracked tables" msgstr "Невідслідковувані таблиці" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Відслідковувати таблицю" @@ -938,8 +935,8 @@ msgstr "" #: import.php:86 #, 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 для знаходження шляхів вирішення цієї " @@ -1017,13 +1014,13 @@ msgstr "" "PHP скриптів." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запит було успішно виконано" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" @@ -1110,8 +1107,8 @@ msgstr "Порожній пароль!" msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "Додати користувача" @@ -1129,7 +1126,7 @@ msgid "Close" msgstr "Закрити" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1156,13 +1153,13 @@ msgstr "Статичні дані" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Разом" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "Інше" @@ -1192,7 +1189,7 @@ msgstr "Трафік серверу (в KiB)" msgid "Connections since last refresh" msgstr "З'єднань на час останнього оновлення" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Процесів" @@ -1256,13 +1253,13 @@ msgstr "SWAP системи" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "КБ" @@ -1314,7 +1311,7 @@ msgstr "Байтів надіслано" msgid "Bytes received" msgstr "Байтів отримано" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "З'єднань" @@ -1353,11 +1350,11 @@ msgstr "%d таблиця(таблиць)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "Налаштування" @@ -1380,8 +1377,8 @@ msgstr "Будь ласка додайте щонайменше одну змі #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Жодного" @@ -1424,8 +1421,8 @@ msgid "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" -"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за " -"%d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " +"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за %" +"d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " "залежності від вашої системи." #: js/messages.php:150 @@ -1481,7 +1478,7 @@ msgstr "Змінити налаштування" msgid "Current settings" msgstr "Поточні налаштування" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "Заголовок діаграми" @@ -1570,7 +1567,7 @@ msgstr "Тлумачити вихідні дані" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Час" @@ -1673,10 +1670,10 @@ msgstr "" "Неможливо побудувати сітку даних з імпортованою конфігурацією. Відновлення " "конфігурації за замовчуванням..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імпорт" @@ -1728,9 +1725,9 @@ msgstr "Використана змінна / формула" msgid "Test" msgstr "Тест" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Скасувати" @@ -1758,9 +1755,9 @@ msgstr "Видалення стовпчика" msgid "Adding Primary Key" msgstr "Додавання Головного Ключа" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1842,7 +1839,7 @@ msgstr "Видалення" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Визначення збереженої функції має містити оператор RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" @@ -1882,8 +1879,8 @@ msgstr "Показати блок запиту" msgid "No rows selected" msgstr "Рядків не вибрано" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Змінити" @@ -1898,7 +1895,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2416,16 +2413,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "за секунду" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "за хвилину" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "за годину" @@ -2533,8 +2530,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2595,7 +2592,7 @@ msgid "The row has been deleted" msgstr "Рядок видалено" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Вбити" @@ -2622,31 +2619,31 @@ msgstr "всього" msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Показати PDF схему" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Створити користувача" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Лінк не знайдено" @@ -2721,46 +2718,46 @@ msgstr "З цього моменту Cookies повинні бути дозво msgid "Javascript must be enabled past this point" msgstr "З цього моменту Cookies повинні бути дозволені." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Індекс не визначено!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Індекси" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Унікальне" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Запакований" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Кількість елементів" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Коментар" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Первинний ключ було знищено" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "Індекс %s було знищено" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2769,9 +2766,9 @@ msgstr "" "Схоже що індекси %1$s та %2$s ідентичні, тому один із них може бути " "вилученим." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Бази Даних" @@ -2781,7 +2778,7 @@ msgstr "Бази Даних" msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2794,102 +2791,102 @@ msgstr "Сервер" msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Вставити" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операцій" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Запит згідно прикладу" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Привілеї" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "Користувачі" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Синхронізувати" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Бінарний журнал" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Змінні" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Кодування" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Плагіни" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Помилка" @@ -2934,65 +2931,65 @@ msgstr "Нещодавні таблиці" msgid "There are no recent tables" msgstr "Нещодавніх таблиць немає" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Для цього механізму зберігання немає дельної інформації про статус." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s доступне на цьому MySQL сервері." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s було вимкнене для цього MySQL серверу." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Цей MySQL сервер не підтримує %s кодування." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "невідомий статус таблиці: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Тема %s не знайдена!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Неправильна база даних" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Неправильна назва таблиці" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Помилка зміни назви таблиці %1$s на %2$s" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "Таблицю %s було перейменовано в %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "Неможливо зберегти табличні налаштування UI" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -3001,7 +2998,7 @@ msgstr "" "Помилка очищення таблиичних налаштувань UI (див. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3012,22 +3009,22 @@ msgstr "" "оновлення цієї сторінки. Будь ласка, перевірте чи не була змінена структура " "таблиці." -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Функція" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Значення" @@ -3037,7 +3034,7 @@ msgstr "Значення" msgid "Table Search" msgstr "Шукати" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3173,14 +3170,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3440,8 +3437,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/auth/config.auth.lib.php:98 #, 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$ssetup script%2$s." @@ -3555,12 +3552,12 @@ msgstr "Таблиць" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Дані" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Надмірні видатки" @@ -3677,18 +3674,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL-запит" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3776,7 +3773,7 @@ msgstr "На функціональність %s впливає відома п msgid "Click to toggle" msgstr "Клікніть, щоб змінити" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Переглянути Ваш комп'ютер:" @@ -3786,8 +3783,8 @@ msgstr "Переглянути Ваш комп'ютер:" msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" @@ -3972,7 +3969,7 @@ msgstr "Відновити значення за замовчуванням" msgid "Allow users to customize this value" msgstr "Дозволити користувачам налаштовувати це значення" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4263,7 +4260,7 @@ msgid "Character set of the file" msgstr "Кодування файлу" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Формат" @@ -4563,7 +4560,7 @@ msgstr "Оболочка навігації" msgid "Customize appearance of the navigation frame" msgstr "Налаштувати вигляд оболочки навігації" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Сервери" @@ -5839,7 +5836,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6147,21 +6144,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6218,8 +6215,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Назва" @@ -6319,8 +6316,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:285 @@ -6328,7 +6325,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Кодування файлу:" @@ -6801,8 +6798,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6876,7 +6873,7 @@ msgstr "Подія" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Визначення" @@ -6945,7 +6942,7 @@ msgstr "Доступні MIME-types" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Хост" @@ -7150,8 +7147,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." @@ -7318,77 +7315,77 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Приховати" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Двійковий" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Через велику довжину,
    це поле не може бути відредаговано " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Двійкові дані - не редагуються" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "і потім" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Повернутись" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Вставити новий запис" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7416,7 +7413,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Виконати" @@ -7434,7 +7431,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "Ви насправді хочете " -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Змін немає" @@ -7690,7 +7687,7 @@ msgstr "" "За інформацією як поновити Вашу таблицю Column_comments прошу дивитись у " "Документації" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Закладка на SQL-запит" @@ -7739,6 +7736,10 @@ msgstr "" msgid "no description" msgstr "без опису" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Зняти усі відмітки" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7773,8 +7774,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Змінна" @@ -7799,7 +7800,7 @@ msgstr "Довільний користувач" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Використовувати текстове поле" @@ -7830,10 +7831,10 @@ msgid "Generate Password" msgstr "Згенерувати пароль" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7844,7 +7845,7 @@ msgstr "Наступний запит не виконався: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7859,7 +7860,7 @@ msgstr "Подію %1$s було змінено." msgid "Event %1$s has been created." msgstr "Подія %1$s була створена." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7869,14 +7870,14 @@ msgstr "" msgid "Edit event" msgstr "Редагувати подію" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "Помилка при обробці запиту" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Деталі" @@ -7889,7 +7890,7 @@ msgstr "Назва події" msgid "Event type" msgstr "Тип події" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "Змінити на %s" @@ -7918,13 +7919,13 @@ msgstr "Кінець" msgid "On completion preserve" msgstr "По завершенні збереження" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7949,7 +7950,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "Новий" @@ -7969,7 +7970,7 @@ msgstr "" msgid "Returns" msgstr "Повернення" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -7977,108 +7978,108 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Неправильний тип порядку: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "Вибачте, нам невдалось відновити видалений порядок." -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "Порядок %1$s було змінено." -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "Порядок %1$s створено." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "Редагувати порядок" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "Назва порядку" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "Параметри" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "Напрямок" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Довжина/Значення" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "Додати параметр" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "Видалити останній параметр" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Тип повернення" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "Повернути довжину/значення" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "Опції повернення" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "Детермінований" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "Тип безпеки" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 #, fuzzy msgid "SQL data access" msgstr "доступ SQL даних" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "Ви повинні вказати назву порядку" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Неправильний напрямок \"%s\" задали для параметру." -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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" @@ -8086,18 +8087,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "Результати виконання порядку %s" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "Виконати порядок" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "Параметри порядку" @@ -8384,7 +8385,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Невідома мова: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "Поточний Сервер" @@ -8415,50 +8416,50 @@ msgstr "Цільова база даних" msgid "Click to select" msgstr "Нажміть щоб вибрати" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Запустіть SQL запит/запити на сервері %s" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Виконати SQL запит/запити у базі даних %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Очистити" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "Колонки" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL запит" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Надати всім користувачам доступ до цієї закладки" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замінити існуючу закладку з таким же ім'ям" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Не перезаписувати цей запит з зовнішніх вікон" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Розділювач" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Показати даний запит тут знову" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Лише перегляд" @@ -8563,7 +8564,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Індекс" @@ -8579,8 +8580,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:139 msgid "Transformation options" @@ -8618,12 +8619,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Первинний" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "ПовнТекст" @@ -8637,12 +8638,12 @@ msgstr "" msgid "after %s" msgstr "Після %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "Додати %s стовпчик(ів)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8693,7 +8694,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Відображає лінк до цього малюнку (direct blob download, i.e.)." -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8880,8 +8881,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Користувач" @@ -9006,17 +9007,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "БД відсутні" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Змінити порядок таблиці" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" @@ -9041,7 +9042,7 @@ msgstr "" msgid "Save position" msgstr "Зберегти позицію" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Створити зв'язок" @@ -9104,39 +9105,39 @@ msgstr "Сховати/Показати Таблиці які не мають з msgid "Number of tables" msgstr "Число таблиць" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Видалити зв'язок" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation view" msgid "Relation operator" msgstr "Перегляд залежностей" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "За винятком" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "підзапит" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "Перейменувати у" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "Нове ім'я" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "Загальний" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "Активовані опції" @@ -9300,13 +9301,13 @@ msgstr "Вибрати двійковий журнал для перегляду msgid "Files" msgstr "Файли" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Обрізати показані запити" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Показати повні запити" @@ -9322,7 +9323,7 @@ msgstr "Позиція" msgid "Original position" msgstr "Початкова позиція" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Інформація" @@ -9352,11 +9353,11 @@ msgstr "Головна реплікація" msgid "Slave replication" msgstr "Похідна реплікація" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Дозволити статистику" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9610,7 +9611,7 @@ msgid "None" msgstr "Немає" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" @@ -9627,7 +9628,7 @@ msgstr "Адміністрування" msgid "Global privileges" msgstr "Глобальні права" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" @@ -9647,7 +9648,7 @@ msgstr "Інформація авторизації" msgid "Do not change the password" msgstr "Не змінювати пароль" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9698,7 +9699,7 @@ msgstr "Вибраних користувачів успішно видален msgid "The privileges were reloaded successfully." msgstr "Права успішно перезавантажено." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Редагування прав" @@ -9713,7 +9714,7 @@ msgid "Export all" msgstr "Експорт" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Довільний" @@ -9735,81 +9736,81 @@ msgstr "Привілеї" msgid "Users overview" msgstr "Огляд користувачів" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Видалити вибраних користувачів" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Відмінити всі активні права користувачів та усунути їх після цього." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 перед продовженням." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Права, які стосуються колонок таблиці" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Додати права для цієї бази даних" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Додати права для цієї таблиці" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Створити нового користувача з такими ж правами і ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... залишити старого." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... знищити старого з таблиці користувачів." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... анулювати всі активні права старого користувача, знищивши його після " "того." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9817,41 +9818,41 @@ msgstr "" " ... знищити старого з таблиці користувачів та перевантажити права після " "того." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "Користувачі, котрі мають доступ до "%s"" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "глобальний" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "специфічний для бази даних" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "шаблон" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "The row has been deleted" msgid "User has been added." @@ -10131,51 +10132,51 @@ msgstr "Показати таблиці" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show tables" msgid "Show unformatted values" msgstr "Показати таблиці" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Зв'язки" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Тип запиту" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "Адміністратор" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10183,116 +10184,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Параметр" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Цей MySQL сервер працює %s. Стартував %s." -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Отримано" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Відправлено" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Невдалих спроб" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Перервано" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Команда" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10300,78 +10301,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10379,7 +10380,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10387,42 +10388,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10430,33 +10431,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10465,244 +10466,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Character set of the file:" msgid "Percentage of used key cache (calculated value)" msgstr "Кодування файлу:" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10710,99 +10711,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10810,18 +10811,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10829,69 +10830,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Трекінг не активний." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "Додати коментар" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Оновити" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Column names" msgid "Chart columns" msgstr "Назви колонок" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10900,7 +10901,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10908,18 +10909,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10927,11 +10928,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10939,93 +10940,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Видалити базу даних" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Вибрати таблиці" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Неправильна назва таблиці" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Додати нового користувача" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Статистика рядка" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Вибрати таблиці" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Тип запиту" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11034,7 +11035,7 @@ msgstr[0] "Секунда" msgstr[1] "Секунда" msgstr[2] "Секунда" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11798,35 +11799,35 @@ msgstr "Перевір цілісність даних на рівні поси msgid "Showing tables" msgstr "Показати таблиці" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Простір, що використовується" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Ефективність" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Статистика рядка" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "динамічний" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Довжина рядка" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Розмір рядка" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11851,7 +11852,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11908,56 +11909,56 @@ msgstr "Було додано індекс для %s" msgid "Show more actions" msgstr "Показати інформацію про PHP" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "Додати колонки" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Версія для друку" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Перегляд залежностей" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Запропонувати структуру таблиці" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "Додати коментар" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "У кінці таблиці" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "На початку таблиці" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "Після %s" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Створити індекс на %s колонках" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12489,8 +12490,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12623,8 +12624,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13551,8 +13552,8 @@ msgstr "concurrent_insert встановлений у 0" #~ "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 b233dceffc..e5d5c1cc85 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:19+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -40,53 +40,54 @@ msgstr "" "مطلوبہ براؤزر دریچہ تازہ نہیں کیا جاسکتا۔ ہوسکتا ہے کہ آپ نے اصل دریچہ بند " "کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "تلاش" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "جائیں" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "کلید نام" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "وضاحت" @@ -120,13 +121,13 @@ msgstr "کوائفیہ تبصرہ: " msgid "Table comments" msgstr "جدول تبصرے" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -137,30 +138,30 @@ msgstr "جدول تبصرے" msgid "Column" msgstr "کالم" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "قِسم" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -198,8 +199,8 @@ msgstr "ربط بطرف" msgid "Comments" msgstr "تبصرہ" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -208,15 +209,15 @@ msgstr "تبصرہ" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "نہیں" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -231,8 +232,8 @@ msgstr "نہیں" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -247,11 +248,11 @@ msgstr "کوائفیہ کی ڈمپ (شجرہ) منظر کریں" msgid "No tables found in database." msgstr "کوائفیہ میں کوئی جدول نہیں مِلا۔" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "تمام منتخب کریں" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "تمام انتخاب ختم کریں" @@ -328,12 +329,12 @@ msgstr "پابندیاں لگائیں" msgid "Switch to copied database" msgstr "نقل شدہ کوائفیہ پر جائیں" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "ترتیب" @@ -356,17 +357,17 @@ msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "جدول" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "صفیں" @@ -382,21 +383,21 @@ msgstr "استعمال میں ہے" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "بنائیں" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "آخری دفعہ کی تازہ کاری" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "آخری دفعہ کی پڑتال" @@ -460,7 +461,7 @@ msgid "Del" msgstr "Del" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "یا" @@ -501,91 +502,91 @@ msgstr "طلب بھیجیں" msgid "Access denied" msgstr "‏‏رسائی نہیں دی گئی" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "کم از کم لفظوں میں سے ایک" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "تمام الفاظ" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "بعین فقرہ" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "بطور باقاعدہ اظہار" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "تلاش نتائج برائے \"%s\" %s" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%sجدول کے ساتھ مشابہ%s" -msgstr[1] "%sجدول کے ساتھ مشابہات%s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "براؤز" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "اس جدول کے مشابہات حذف %s کریں؟" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "حذف" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "تمام: %s مشابہ" msgstr[1] "تمام: %s مشابہات" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%sجدول کے ساتھ مشابہ%s" +msgstr[1] "%sجدول کے ساتھ مشابہات%s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "براؤز" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "اس جدول کے مشابہات حذف %s کریں؟" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "حذف" + +#: db_search.php:362 msgid "Search in database" msgstr "کوائفیہ میں تلاش کریں" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "الفاظ یا قدروں کی تلاش برائے (wildcard: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "ڈھونڈیں:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "الفاظ ایک خالی حرف سے جدا جدا ہیں (\" \")." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "جدول میں:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "کالم میں:" @@ -624,8 +625,8 @@ msgstr "کھوج غیر فعال ہے۔" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." @@ -634,7 +635,7 @@ msgstr "" msgid "View" msgstr "نقل جدول" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -644,97 +645,93 @@ msgstr "چربہ کاری" msgid "Sum" msgstr "مجموعہ" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "مع منتخب:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "تمام پڑتال کریں" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "تمام غیر پڑتال کریں" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "برآمد" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "چھپائی منظر" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "خالی" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "چھوڑیں" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "جدول پڑتال کریں" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "جدول احسن کریں" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "جدول مرمت کریں" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "جدول تجزیہ کریں" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "کوائف لغت" @@ -747,9 +744,9 @@ msgstr "کھوج شدہ جداول" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "کوائفیہ" @@ -766,17 +763,17 @@ msgstr "بنایا" msgid "Updated" msgstr "تازہ کی گئی" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "حالت" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "عمل" @@ -808,7 +805,7 @@ msgstr "ساخت تصویر" msgid "Untracked tables" msgstr "بغیر کھوج جداول" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "جدول کھوج" @@ -960,11 +957,11 @@ msgstr "" #: import.php:86 #, 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 "" -"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " -"%sdocumentation%s دیکھیں۔" +"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %" +"sdocumentation%s دیکھیں۔" #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1035,13 +1032,13 @@ msgstr "" "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "واپس" @@ -1137,8 +1134,8 @@ msgstr "پاس ورڈ خالی ہے" msgid "The passwords aren't the same!" msgstr "پاس ورڈ ایک جیسے نہیں ہیں" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Add %s" msgid "Add user" @@ -1158,7 +1155,7 @@ msgid "Close" msgstr "بند کریں" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1189,13 +1186,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "میزان" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1227,7 +1224,7 @@ msgstr "سرور انتخاب" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "" @@ -1297,13 +1294,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "میگا بائٹ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "کلو بائٹ" @@ -1359,7 +1356,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "" @@ -1402,11 +1399,11 @@ msgstr "%s جدول" msgid "Questions" msgstr "نسخے" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1433,8 +1430,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "" @@ -1533,7 +1530,7 @@ msgstr "جنرل ریلیشن فیچرز" msgid "Current settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Default" msgid "Chart Title" @@ -1625,7 +1622,7 @@ msgstr "SQL کی تفصیل بتائیں" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "وقت" @@ -1735,10 +1732,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "درآمد" @@ -1796,9 +1793,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "منسوخ کریں" @@ -1826,9 +1823,9 @@ msgstr "کالم چھوڑا جارہا ہے" msgid "Adding Primary Key" msgstr "بنیادی کلید شامل کررہا ہے" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "ٹھیک ہے" @@ -1924,7 +1921,7 @@ msgstr "حذف" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1968,8 +1965,8 @@ msgstr "طلب خانہ دکھائیں" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "" @@ -1986,7 +1983,7 @@ msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2180,8 +2177,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ " -"%s, جاری کیا گیا %s." +"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %" +"s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:373 @@ -2505,16 +2502,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "" @@ -2631,8 +2628,8 @@ msgstr "" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "" @@ -2685,7 +2682,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "" @@ -2712,31 +2709,31 @@ msgstr "" msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "" @@ -2810,46 +2807,46 @@ msgstr "اس جگہ کوکی لازمی اہل ہوں۔" msgid "Javascript must be enabled past this point" msgstr "اس جگہ کوکی لازمی اہل ہوں۔" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "کوئی اشاریہ موجود نہیں!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "اشاریے" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "منفرد" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "باندھنا" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "درجہ تعلق داری" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "تبصرہ" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "بنیادی کلید چھوڑ دیا گیا ہے" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "اشاریہ %s چھوڑ دیا گیا ہے" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2858,9 +2855,9 @@ msgstr "" "اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا " "جائے گا۔" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "کوائفیے" @@ -2870,7 +2867,7 @@ msgstr "کوائفیے" msgid "Server" msgstr "سرور" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2883,102 +2880,102 @@ msgstr "سرور" msgid "Structure" msgstr "ساخت" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "داخل کریں" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "عملیات" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "نقص" @@ -3026,72 +3023,72 @@ msgstr "حداول کی گنتی کریں" msgid "There are no recent tables" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "اس ذخیرہ انجن کے متعلق تفصیلی معلومات موجود نہیں ہیں۔" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s اس MySQL سرور میں دستیاب ہے۔" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "خیالیہ %s نیہں ملا!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "غلط کوائفیہ" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "غلط جدول نام" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3099,22 +3096,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "" @@ -3124,7 +3121,7 @@ msgstr "" msgid "Table Search" msgstr "تلاش" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3260,14 +3257,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3527,8 +3524,8 @@ msgstr "%s میں خوش آمدید" #: libraries/auth/config.auth.lib.php:98 #, 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$ssetup script%2$s کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" @@ -3640,12 +3637,12 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "کوائف" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "مجموعی" @@ -3760,18 +3757,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "انگریزی" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL طلب" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3861,7 +3858,7 @@ msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھ msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" @@ -3871,8 +3868,8 @@ msgstr "اپنے کمپیوٹر کو براؤز کریں:" msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے" @@ -4056,7 +4053,7 @@ msgstr "طے شدہ قدر بحال کریں" msgid "Allow users to customize this value" msgstr "صارفین کو اس قدر کے مخصوص کرنے کی اجازت دیں" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4343,7 +4340,7 @@ msgid "Character set of the file" msgstr "مسل کے لیے حروف کی سیٹ" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "وضع" @@ -4641,7 +4638,7 @@ msgstr "گشت چوکھٹا" msgid "Customize appearance of the navigation frame" msgstr "گشت چوکھٹا کی ظاہری شکل کی تخصیص کریں" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "سرور" @@ -5949,7 +5946,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6263,21 +6260,21 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "" @@ -6334,8 +6331,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6445,8 +6442,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:285 @@ -6454,7 +6451,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "" @@ -6919,8 +6916,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -6982,7 +6979,7 @@ msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7049,7 +7046,7 @@ msgstr "" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "" @@ -7253,8 +7250,8 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7424,75 +7421,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "اور پھر" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7518,7 +7515,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "" @@ -7536,7 +7533,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "کیا آپ واقعی چاہتے ہیں" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "" @@ -7788,7 +7785,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "" @@ -7837,6 +7834,10 @@ msgstr "" msgid "no description" msgstr "" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "تمام غیر پڑتال کریں" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "" @@ -7871,8 +7872,8 @@ msgstr "" msgid "Slave status" msgstr "" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "" @@ -7897,7 +7898,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "" @@ -7928,10 +7929,10 @@ msgid "Generate Password" msgstr "" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7942,7 +7943,7 @@ msgstr "" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7959,7 +7960,7 @@ msgstr "Table %s has been dropped" msgid "Event %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7970,16 +7971,16 @@ msgstr "" msgid "Edit event" msgstr "نیا صارف اضافہ کریں" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "فرمایش عمل کرتے ہوئے نقص ہے" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" @@ -7994,7 +7995,7 @@ msgstr "صفحہ نمبر" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "" @@ -8027,13 +8028,13 @@ msgstr "اختتام" msgid "On completion preserve" msgstr "داخل کرنا مکمل ہوا" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8058,7 +8059,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8080,7 +8081,7 @@ msgstr "" msgid "Returns" msgstr "عمل" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8088,140 +8089,140 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "غلط سرور اشاریہ: %s" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Routine %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "تدوین موڈ" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Comments" msgid "Routine name" msgstr "آراء-رائے" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "بنائیں" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "کوائفیہ ہٹائیں" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Action" msgid "Return options" msgstr "عمل" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "سلامتی" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "" @@ -8541,7 +8542,7 @@ msgstr "rtl" msgid "Unknown language: %1$s." msgstr "" -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "" @@ -8572,52 +8573,52 @@ msgstr "" msgid "Click to select" msgstr "انتخاب کے لیے کلک کریں" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Comments" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "" @@ -8701,7 +8702,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "" @@ -8748,12 +8749,12 @@ msgid "As defined:" msgstr "" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "" @@ -8766,12 +8767,12 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -8818,7 +8819,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8970,8 +8971,8 @@ msgid "Protocol version" msgstr "" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "" @@ -9088,17 +9089,17 @@ msgid "" "issues." msgstr "" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Invalid table name" msgid "Filter databases by name" msgstr "غلط جدول نام" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "Invalid table name" msgid "Filter tables by name" @@ -9121,7 +9122,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "" @@ -9183,49 +9184,49 @@ msgstr "" msgid "Number of tables" msgstr "" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "ریلیشن حذف ہو گیا" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "برآمد" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "Submit Query" msgid "subquery" msgstr "Submit Query" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename database to" msgid "Rename to" msgstr "ڈیٹا بیس کا نام بدلیں" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "Page number:" msgid "New name" msgstr "صفحہ نمبر" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Created" msgid "Aggregate" msgstr "تخلیق کیا گیا" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Action" msgid "Active options" @@ -9391,13 +9392,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "" @@ -9413,7 +9414,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "" @@ -9442,11 +9443,11 @@ msgstr "" msgid "Slave replication" msgstr "" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9686,7 +9687,7 @@ msgid "None" msgstr "" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "" @@ -9703,7 +9704,7 @@ msgstr "" msgid "Global privileges" msgstr "" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "" @@ -9723,7 +9724,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "" @@ -9772,7 +9773,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "" @@ -9787,7 +9788,7 @@ msgid "Export all" msgstr "برآمد" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "" @@ -9807,115 +9808,115 @@ msgstr "استحقاق پڑتال کریں" msgid "Users overview" msgstr "" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10192,49 +10193,49 @@ msgstr "بائیں جھروکہ میں علامت دکھائیں" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show logo in left frame" msgid "Show unformatted values" msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "لپیٹنا" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Gather errors" msgid "Run analyzer" msgstr "نقائص اکھٹی کریں" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10242,116 +10243,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "ابتدائیہ صفحہ کی تخصیص کریں" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "حکم" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10359,78 +10360,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10438,7 +10439,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10446,42 +10447,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10489,33 +10490,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10524,244 +10525,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "درآمد مسل کی وضع" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10769,99 +10770,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10869,18 +10870,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10888,72 +10889,72 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "کھوج غیر فعال ہے۔" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Startup" msgid "Start Monitor" msgstr "ابتدائیہ" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add chart" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "تازہ کریں" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "طے شدہ قدر بحال کریں" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10962,7 +10963,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10970,18 +10971,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10989,11 +10990,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11001,95 +11002,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "کوائفیہ ہٹائیں" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "SQL queries" msgid "Select series:" msgstr "SQL طلب" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "غلط جدول نام" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a New User" msgid "Add this series" msgstr "نیا صارف اضافہ کریں" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL طلب" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Query statistics" msgid "Log statistics" msgstr "طلب شماریات" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "سارا منتخب کریں" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Gather errors" msgid "Query analyzer" msgstr "نقائص اکھٹی کریں" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11097,7 +11098,7 @@ msgid_plural "%d seconds" msgstr[0] "سیکنڈ" msgstr[1] "سیکنڈ" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11857,35 +11858,35 @@ msgstr "" msgid "Showing tables" msgstr "حداول کی گنتی کریں" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11908,7 +11909,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -11961,55 +11962,55 @@ msgstr "" msgid "Show more actions" msgstr "" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Move columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "چھپائی منظر" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "" @@ -12535,8 +12536,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12669,8 +12670,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/uz.po b/po/uz.po index 0b10ae0dac..a935dafe98 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-17 15:09+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -37,53 +37,54 @@ msgstr "" "Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган " "ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Қидириш" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Индекс номи" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Тавсифи" @@ -114,13 +115,13 @@ msgstr "Маълумотлар базасига изоҳ: " msgid "Table comments" msgstr "Жадвал изоҳи" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -131,30 +132,30 @@ msgstr "Жадвал изоҳи" msgid "Column" msgstr "Майдон номлари" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Тур" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -192,8 +193,8 @@ msgstr "Алоқалар" msgid "Comments" msgstr "Изоҳлар" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -202,15 +203,15 @@ msgstr "Изоҳлар" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Йўқ" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -225,8 +226,8 @@ msgstr "Йўқ" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -241,11 +242,11 @@ msgstr "Маълумотлар базаси дампини (схемасини) msgid "No tables found in database." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Барчасини белгилаш" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Белгилашни бекор қилиш" @@ -326,12 +327,12 @@ msgstr "Чекловлар қўшиш" msgid "Switch to copied database" msgstr "Нусха олинган маълумотлар базасига ўтиш" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Таққослаш" @@ -359,17 +360,17 @@ msgstr "Алоқалар схемаси" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Жадвал" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Қаторларсони" @@ -384,21 +385,21 @@ msgstr "ишлатилмоқда" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Тузиш" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Охирги янгиланиш" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Охирги текширув" @@ -463,7 +464,7 @@ msgid "Del" msgstr "Ўчириш" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ёки" @@ -508,60 +509,28 @@ msgstr "сўровни бажариш" msgid "Access denied" msgstr "Рухсат берилмади" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "сўзлардан бири" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "барча сўзлар" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "аниқ мослик" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "мунтазам ибора" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" учун қидирув натижалари \"%s\":" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" -msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Кўриб чиқиш" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Delete tracking data for this table" -msgid "Delete the matches for the %s table?" -msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "Ўчириш" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -569,31 +538,63 @@ msgid_plural "Total: %s matches" msgstr[0] "Жами: \"%s\" ўхшашлик" msgstr[1] "Жами: \"%s\" ўхшашлик" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" +msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Кўриб чиқиш" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Delete tracking data for this table" +msgid "Delete the matches for the %s table?" +msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "Ўчириш" + +#: db_search.php:362 msgid "Search in database" msgstr "Маълумотлар базасида қидириш" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Қидириш учун сўз(лар) ёки қиймат(лар) (ўрнига қўйиш белгиси: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Излаш:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Қуйидаги жадвал(лар)да қидириш:" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -636,8 +637,8 @@ msgstr "Кузатиш фаол эмас." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 қаранг." @@ -647,7 +648,7 @@ msgstr "" msgid "View" msgstr "Намойиш" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -657,99 +658,95 @@ msgstr "Репликация (захира нусха кўчириш)" msgid "Sum" msgstr "Жами" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Белгиланганларни:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Барчасини белгилаш" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Белгилашни бекор қилиш" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Тозалаш" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "Ўчириш" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Жадвални текшириш" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Жадвални оптималлаштириш" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Жадвални тиклаш" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Жадвал таҳлили" -#: db_structure.php:717 +#: db_structure.php:712 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Ушбу жадвалга ўтиш" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Маълумотлар луғати" @@ -762,9 +759,9 @@ msgstr "Кузатилган жадваллар" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Маълумотлар базаси" @@ -781,17 +778,17 @@ msgstr "Тузилди" msgid "Updated" msgstr "Янгиланди" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Ҳолат" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Амал" @@ -823,7 +820,7 @@ msgstr "Тузилма расми" msgid "Untracked tables" msgstr "Кузатилмаган жадваллар" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Жадвални кузатиш" @@ -976,11 +973,11 @@ msgstr "" #: import.php:86 #, 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 келтирилган." +"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" +"sдокументацияда%s келтирилган." #: import.php:224 import.php:464 msgid "Showing bookmark" @@ -1057,13 +1054,13 @@ msgstr "" "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL сўрови муваффақиятли бажарилди" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Орқага" @@ -1162,8 +1159,8 @@ msgstr "Парол белгиланмаган!" msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1187,7 +1184,7 @@ msgid "Close" msgstr "Ёпиш" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1218,13 +1215,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Жами" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1256,7 +1253,7 @@ msgstr "Серверни танланг" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Жараёнлар" @@ -1328,13 +1325,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "КБ" @@ -1396,7 +1393,7 @@ msgstr "" msgid "Bytes received" msgstr "Қабул қилинди" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Уланишлар" @@ -1438,11 +1435,11 @@ msgstr "Жадваллар сони: \"%s\"" msgid "Questions" msgstr "Версиялар" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1471,8 +1468,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Йўқ" @@ -1572,7 +1569,7 @@ msgstr "Бошқа созланишлар" msgid "Current settings" msgstr "танловлар" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1666,7 +1663,7 @@ msgstr "Сўров таҳлили" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Вақт" @@ -1776,10 +1773,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1839,9 +1836,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Бекор қилиш" @@ -1873,9 +1870,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1983,7 +1980,7 @@ msgstr "\"%s\" ўчирилмоқда" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -2028,8 +2025,8 @@ msgstr "SQL сўровлари қутиси" msgid "No rows selected" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "Ўзгартириш" @@ -2046,7 +2043,7 @@ msgid "%d is not valid row number." msgstr "%d сони тўғри қатор рақами эмас!" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2631,16 +2628,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "секундига" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "минутига" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "соатига" @@ -2758,8 +2755,8 @@ msgstr "Индекс бўйича сортировка қилиш" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Параметрлар" @@ -2820,7 +2817,7 @@ msgid "The row has been deleted" msgstr "Ёзув ўчирилди" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Тугатиш" @@ -2849,31 +2846,31 @@ msgstr "жами" msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Алоқа топилмади" @@ -2950,55 +2947,55 @@ msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиш msgid "Javascript must be enabled past this point" msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Индекс белгиланмаган!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индекслар" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Уникал" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Қисилган" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Элементлар сони" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Изоҳ" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Бирламчи калит ўчирилди" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "\"%s\" индекси ўчирилди" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Маълумотлар базалари" @@ -3008,7 +3005,7 @@ msgstr "Маълумотлар базалари" msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -3021,104 +3018,104 @@ msgstr "Сервер" msgid "Structure" msgstr "Тузилиши" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Қўйиш" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операциялар" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Кузатиш" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Триггерлар" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Жадвал - бўш!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Маълумотлар базаси бўш!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "Сўров" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Привилегиялар" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Муолажалар" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Ҳодисалар" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Фойдаланувчи" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Синхронизация қилиш" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Иккилик журнал" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "Ўзгарувчилар" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Кодировкалар" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Жадвал турлари" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Хатолик" @@ -3171,75 +3168,75 @@ msgstr "Жадвалларни санаш" msgid "There are no recent tables" msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас." -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олади." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверда фаолсизлантирилган." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди." -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Репликация сервери аҳволи ҳақида маълумот" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Манба база" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "\"%s\" мавзуси топилмади!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Нотўғри маълумотлар базаси" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Жадвал номи нотўғри" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3247,22 +3244,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Функция" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Оператор" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Қиймати" @@ -3272,7 +3269,7 @@ msgstr "Қиймати" msgid "Table Search" msgstr "Қидириш" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3412,14 +3409,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3679,8 +3676,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/auth/config.auth.lib.php:98 #, 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$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." @@ -3798,12 +3795,12 @@ msgstr "Жадваллар" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Маълумотлар" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Фрагментланган" @@ -3929,18 +3926,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL сўрови" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -4038,7 +4035,7 @@ msgstr "" msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -4049,8 +4046,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" @@ -4247,7 +4244,7 @@ msgstr "Асл қийматларни тиклаш" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4560,7 +4557,7 @@ msgid "Character set of the file" msgstr "Файл кодировкаси" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Формат" @@ -4882,7 +4879,7 @@ msgstr "Навигация панели" msgid "Customize appearance of the navigation frame" msgstr "Навигация панели кўринишини созлаш" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Серверлар" @@ -5935,8 +5932,8 @@ msgstr "\"config\" аутентификация усули пароли" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -6043,8 +6040,8 @@ msgstr "SSL уланишдан фойдаланиш" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6313,7 +6310,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "SQL Query box" msgid "Retain query box" @@ -6666,7 +6663,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6674,17 +6671,17 @@ msgid "" "configured)." msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер жавоб бермаяпти" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Тафсилотлар..." @@ -6745,8 +6742,8 @@ msgstr "Жадвал тузиш" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Номи" @@ -6873,23 +6870,23 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." 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 функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " -"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" +"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:285 msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Файл кодировкаси:" @@ -7440,8 +7437,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7519,7 +7516,7 @@ msgstr "Ҳодиса" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7592,7 +7589,7 @@ msgstr "Мавжуд MIME турлари" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Хост" @@ -7801,8 +7798,8 @@ msgstr "Таркибини экспорт қилиш" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." @@ -7995,79 +7992,79 @@ msgstr "SQL билан мослик режими" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Яшириш" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Иккилик" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Маълумотлар кўплиги сабали
    ўзгартириш қийишлашиши мумкин" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "Юклаш каталогидан" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "ва сўнг" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" @@ -8095,7 +8092,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Бажариш" @@ -8115,7 +8112,7 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Do you really want to execute the following query?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "Ўзгариш йўқ" @@ -8371,7 +8368,7 @@ msgstr "" "\"column_comments\" жадвалини янгилаш зарур. Батафсил маълумот учун " "документацияга қаранг." -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Хатчўп қўйилган SQL сўрови" @@ -8426,6 +8423,10 @@ msgstr "" msgid "no description" msgstr "тавсиф мавжуд эмас" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Белгилашни бекор қилиш" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Тобе сервер конфигурацияси" @@ -8463,8 +8464,8 @@ msgstr "Бош сервер статуси" msgid "Slave status" msgstr "Тобе сервер статуси" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "Ўзгарувчи" @@ -8491,7 +8492,7 @@ msgstr "Ҳар қайси фойдаланувчи" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" @@ -8524,10 +8525,10 @@ msgid "Generate Password" msgstr "Парол ўрнатиш" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8539,7 +8540,7 @@ msgstr "Қуйидаги сўровлар бажарилди:" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8556,7 +8557,7 @@ msgstr "\"%s\" жадвали ўчирилди" msgid "Event %1$s has been created." msgstr "%1$s жадвали тузилди." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8567,16 +8568,16 @@ msgstr "" msgid "Edit event" msgstr "Серверларни таҳрирлаш" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Жараёнлар" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -8593,7 +8594,7 @@ msgstr "Ҳодиса тури" msgid "Event type" msgstr "Ҳодиса тури" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8629,13 +8630,13 @@ msgstr "Охири" msgid "On completion preserve" msgstr "Тўла қўйиш" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8660,7 +8661,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8682,7 +8683,7 @@ msgstr "" msgid "Returns" msgstr "Қайтариладиган тип" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8690,144 +8691,144 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "\"%s\" жадвали ўчирилди" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s жадвали тузилди." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Таҳрирлаш усули" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Муолажалар" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Тўғридан-тўғри боғланишлар" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Узунлик/қийматлар" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Индекс(лар)ни сақлаш" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Қайтариладиган тип" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Узунлик/қийматлар" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Жадвал параметрлари" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Хавфсизлик" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -9166,7 +9167,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Номаълум тил: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Current server" msgid "Current Server" @@ -9199,52 +9200,52 @@ msgstr "Нишон база" msgid "Click to select" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Тозалаш" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Шу номли хатчўпни алмаштириш" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "Сўровлар ойнаси ичидаги маълумотларни блокировка қилиш" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Тақсимловчи" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Ушбу сўровни қайта кўрсатиш" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Фақат кўриш" @@ -9353,7 +9354,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Индекс" @@ -9408,12 +9409,12 @@ msgid "As defined:" msgstr "Қоидага кўра:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Бирламчи" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Матн тўлалигича" @@ -9427,13 +9428,13 @@ msgstr "" msgid "after %s" msgstr "\"%s\" дан кейин" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Устун(лар) қўшиш" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9498,7 +9499,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Расмни юклаб олиш учун боғ кўрсатиш" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9721,8 +9722,8 @@ msgid "Protocol version" msgstr "Протокол версияси" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Фойдаланувчи" @@ -9879,17 +9880,17 @@ msgstr "" "Сервер \"Suhosin\" ҳимоя тизимадан фойдаланмоқда. Юзага келган муаммолар " "ечими учун \"%s\"документация\"%s\" га қаранг." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Маълумотлар базаси мавжуд эмас" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "жадвал номи" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9914,7 +9915,7 @@ msgstr "Чап менюни кўрсатиш/яшириш" msgid "Save position" msgstr "Жадваллар жойлашишини сақлаш" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Боғлиқлик ўрнатиш" @@ -9978,49 +9979,49 @@ msgstr "Алоқа мавжуд бўлмаган жадвалларни яшир msgid "Number of tables" msgstr "Жадваллар сони" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Боғлиқликни ўчириш" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Алоқа ўчирилди" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Экспорт" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "сўров бўйича" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Кўриниш номини ўзгартириш" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Фойдаланувчи номи" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Тузиш" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -10204,13 +10205,13 @@ msgstr "Кўриш учун бинар журнални танланг" msgid "Files" msgstr "Файллар сони" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "Сўровларни қисқартириб кўрсатиш" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" @@ -10226,7 +10227,7 @@ msgstr "Позиция" msgid "Original position" msgstr "Асл позиция" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Маълумот" @@ -10254,11 +10255,11 @@ msgstr "Бош сервер репликацияси" msgid "Slave replication" msgstr "Тобе сервер репликацияси" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Статискани ёқиш" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10518,7 +10519,7 @@ msgid "None" msgstr "Йўқ" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" @@ -10535,7 +10536,7 @@ msgstr "Администрация" msgid "Global privileges" msgstr "Глобал привилегиялар" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" @@ -10557,7 +10558,7 @@ msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10608,7 +10609,7 @@ msgstr "Белгиланган фойдаланувчилар муваффақи msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Привилегияларни таҳрирлаш" @@ -10623,7 +10624,7 @@ msgid "Export all" msgstr "Экспорт" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Ҳар қайси" @@ -10645,128 +10646,128 @@ msgstr "Привилегиялар" msgid "Users overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " "ўчириш." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 керак." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Майдон привилегиялари" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари " "ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак." -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "ва эскисини сақлаш." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "Глобал" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "Гуруҳлаш белгиси" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -11075,51 +11076,51 @@ msgstr "Очиқ жадваллар рўйхати" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Алоқалар" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Сўров тури" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Функциялар" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11127,33 +11128,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Бошланғич саҳифани созлаш" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Тавсиф" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"." -#: server_status.php:1075 +#: server_status.php:1074 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -11161,19 +11162,19 @@ msgid "" "b> process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1077 +#: server_status.php:1076 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1079 +#: server_status.php:1078 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1082 +#: server_status.php:1081 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -11187,11 +11188,11 @@ msgstr "" "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " "учун, <a href=\"#replication\">репликация бўлими</a>га киринг." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Репликация статуси" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11199,47 +11200,47 @@ msgstr "" "Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг " "учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Қабул қилинди" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Юборилди" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Максимал уланишлар сони" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Муваффақиятсиз уринишлар сони" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Узилди" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Буйруқ" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-серверга уланиб бўлмади" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11248,16 +11249,16 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11270,11 +11271,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11282,7 +11283,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11290,31 +11291,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Бажариладиган \"INSERT DELAYED\" сўровлар сони." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11324,7 +11325,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11333,7 +11334,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11342,7 +11343,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11352,7 +11353,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11361,7 +11362,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " "DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11374,7 +11375,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11386,35 +11387,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11424,7 +11425,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11436,11 +11437,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11449,7 +11450,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11458,12 +11459,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11471,7 +11472,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11484,51 +11485,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11536,35 +11537,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11573,51 +11574,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11625,7 +11626,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11633,7 +11634,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11642,17 +11643,17 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Импорт қилинаётган файл формати" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11663,26 +11664,26 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11693,19 +11694,19 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11713,42 +11714,42 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" -"()\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" +"\" функцияси ёрдамида очилган файлга айтилади." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11760,7 +11761,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11768,19 +11769,19 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11788,13 +11789,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11803,7 +11804,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11812,17 +11813,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11830,13 +11831,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11844,12 +11845,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11859,25 +11860,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11889,7 +11890,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" "(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11900,11 +11901,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11916,74 +11917,74 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Кузатиш фаол эмас." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Бошлаш" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Индекс(лар)ни сақлаш" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Янгилаш" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR майдонидаги устунлар сони" -#: server_status.php:1626 +#: server_status.php:1635 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Хатоликларни бошқариш:" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Асл қийматларни тиклаш" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11992,7 +11993,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -12000,18 +12001,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -12019,11 +12020,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -12031,104 +12032,104 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: server_status.php:1679 +#: server_status.php:1690 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Тобе сервер статуси жадвалини кўриш" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Жадвалларни танланг" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Жадвал номи нотўғри" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Янги фойдаланувчи қўшиш" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL сўровлари" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Статискани кўрсатиш" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Жадвалларни танланг" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Сўров тури" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "секундига" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -13012,35 +13013,35 @@ msgstr "Маълумотлар яхлитлигини текшириш:" msgid "Showing tables" msgstr "Жадвалларни кўрсатиш" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Фойдаланилаётган жой" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Эффективлик" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Қаторлар статистикаси" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "статик" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "динамик" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Қатор узунлиги" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Қатор ҳажми" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -13071,7 +13072,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ташқи калит чегаралари" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -13130,56 +13131,56 @@ msgstr "\"%s\" учун индекс қўшилди" msgid "Show more actions" msgstr "Версияларни кўрсатиш" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Устун(лар)ни олиб ташлаш" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Чоп этиш версияси" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Алоқаларни кўриш" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Жадвал тузилиши таҳлили" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Устун(лар) қўшиш" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Жадвал охирига" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Жадвал бошига" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "\"%s\" дан кейин" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "\"%s\" майдон учун индекс тузиш" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "бўлакларга бўлинган" @@ -13719,8 +13720,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13855,8 +13856,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14929,8 +14930,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 "Add a New User" #~ msgstr "Янги фойдаланувчи қўшиш" diff --git a/po/uz@latin.po b/po/uz@latin.po index 6a363827c1..f4def24dcd 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-03-14 14:57+0200\n" "Last-Translator: Michal Čihař \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: Weblate 0.6\n" @@ -38,53 +38,54 @@ msgstr "" "yopilgan yoki brauzer xavfsizlik yuzasidan oynalararo yangilashni blokirovka " "qilmoqda" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "Qidirish" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "Indeks nomi" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "Tavsifi" @@ -115,13 +116,13 @@ msgstr "Ma`lumotlar bazasiga izoh: " msgid "Table comments" msgstr "Jadval izohi" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -132,30 +133,30 @@ msgstr "Jadval izohi" msgid "Column" msgstr "Maydon nomlari" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "Tur" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -193,8 +194,8 @@ msgstr "Aloqalar" msgid "Comments" msgstr "Izohlar" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -203,15 +204,15 @@ msgstr "Izohlar" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Yo‘q" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -226,8 +227,8 @@ msgstr "Yo‘q" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -242,11 +243,11 @@ msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish" msgid "No tables found in database." msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "Barchasini belgilash" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "Belgilashni bekor qilish" @@ -327,12 +328,12 @@ msgstr "Cheklovlar qo‘shish" msgid "Switch to copied database" msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "Taqqoslash" @@ -360,17 +361,17 @@ msgstr "Aloqalar sxemasi" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Jadval" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "Qatorlarsoni" @@ -385,21 +386,21 @@ msgstr "ishlatilmoqda" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "Tuzish" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "Oxirgi yangilanish" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "Oxirgi tekshiruv" @@ -464,7 +465,7 @@ msgid "Del" msgstr "O‘chirish" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Yoki" @@ -509,60 +510,28 @@ msgstr "so‘rovni bajarish" msgid "Access denied" msgstr "Ruxsat berilmadi" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "so‘zlardan biri" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "barcha so‘zlar" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "aniq moslik" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "muntazam ibora" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" uchun qidiruv natijalari \"%s\":" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match(es) inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" -msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "Ko‘rib chiqish" - -#: db_search.php:255 -#, fuzzy, php-format -#| msgid "Delete tracking data for this table" -msgid "Delete the matches for the %s table?" -msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "O‘chirish" - -#: db_search.php:269 +#: db_search.php:267 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -570,32 +539,64 @@ msgid_plural "Total: %s matches" msgstr[0] "Jami: \"%s\" o‘xshashlik" msgstr[1] "Jami: \"%s\" o‘xshashlik" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match(es) inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" +msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "Ko‘rib chiqish" + +#: db_search.php:318 +#, fuzzy, php-format +#| msgid "Delete tracking data for this table" +msgid "Delete the matches for the %s table?" +msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "O‘chirish" + +#: db_search.php:362 msgid "Search in database" msgstr "Ma`lumotlar bazasida qidirish" -#: db_search.php:295 +#: db_search.php:366 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" "Qidirish uchun so‘z(lar) yoki qiymat(lar) (o‘rniga qo‘yish belgisi: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "Izlash:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan." -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Quyidagi jadval(lar)da qidirish:" -#: db_search.php:348 +#: db_search.php:414 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -638,8 +639,8 @@ msgstr "Kuzatish faol emas." #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." @@ -649,7 +650,7 @@ msgstr "" msgid "View" msgstr "Namoyish" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -659,99 +660,95 @@ msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" msgid "Sum" msgstr "Jami" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "Belgilanganlarni:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "Barchasini belgilash" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "Belgilashni bekor qilish" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tozalash" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "O‘chirish" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "Jadvalni tekshirish" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "Jadvalni optimallashtirish" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "Jadvalni tiklash" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "Jadval tahlili" -#: db_structure.php:717 +#: db_structure.php:712 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Ushbu jadvalga o‘tish" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Ma`lumotlar lug‘ati" @@ -764,9 +761,9 @@ msgstr "Kuzatilgan jadvallar" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Ma`lumotlar bazasi" @@ -783,17 +780,17 @@ msgstr "Tuzildi" msgid "Updated" msgstr "Yangilandi" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "Holat" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "Amal" @@ -825,7 +822,7 @@ msgstr "Tuzilma rasmi" msgid "Untracked tables" msgstr "Kuzatilmagan jadvallar" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "Jadvalni kuzatish" @@ -978,8 +975,8 @@ msgstr "" #: import.php:86 #, 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 "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." @@ -1059,13 +1056,13 @@ msgstr "" "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL so‘rovi muvaffaqiyatli bajarildi" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Orqaga" @@ -1167,8 +1164,8 @@ msgstr "Parol belgilanmagan!" msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1192,7 +1189,7 @@ msgid "Close" msgstr "Yopish" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1223,13 +1220,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "Jami" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "" @@ -1261,7 +1258,7 @@ msgstr "Serverni tanlang" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "Jarayonlar" @@ -1333,13 +1330,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1401,7 +1398,7 @@ msgstr "" msgid "Bytes received" msgstr "Qabul qilindi" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "Ulanishlar" @@ -1443,11 +1440,11 @@ msgstr "Jadvallar soni: \"%s\"" msgid "Questions" msgstr "Vеrsiyalar" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1476,8 +1473,8 @@ msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "Yo‘q" @@ -1577,7 +1574,7 @@ msgstr "Boshqa sozlanishlar" msgid "Current settings" msgstr "tanlovlar" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1671,7 +1668,7 @@ msgstr "So‘rov tahlili" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "Vaqt" @@ -1781,10 +1778,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1845,9 +1842,9 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "Bekor qilish" @@ -1879,9 +1876,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "OK" @@ -1989,7 +1986,7 @@ msgstr "\"%s\" o‘chirilmoqda" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -2035,8 +2032,8 @@ msgid "No rows selected" msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "O‘zgartirish" @@ -2053,7 +2050,7 @@ msgid "%d is not valid row number." msgstr "%d soni to‘g‘ri qator raqami emas!" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2640,16 +2637,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "sekundiga" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "minutiga" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "soatiga" @@ -2767,8 +2764,8 @@ msgstr "Indeks bo‘yicha sortirovka qilish" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "Parametrlar" @@ -2829,7 +2826,7 @@ msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "Tugatish" @@ -2838,8 +2835,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/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" #: libraries/DisplayResults.class.php:4103 msgid "in query" @@ -2858,31 +2855,31 @@ msgstr "jami" msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "Aloqa topilmadi" @@ -2959,55 +2956,55 @@ msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." msgid "Javascript must be enabled past this point" msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "Indeks belgilanmagan!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indekslar" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "Qisilgan" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "Elementlar soni" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Izoh" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "Birlamchi kalit o‘chirildi" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "\"%s\" indeksi o‘chirildi" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "Ma`lumotlar bazalari" @@ -3017,7 +3014,7 @@ msgstr "Ma`lumotlar bazalari" msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -3030,104 +3027,104 @@ msgstr "Server" msgid "Structure" msgstr "Tuzilishi" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "Qo‘yish" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Kuzatish" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "Triggerlar" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "Jadval - bo‘sh!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "Ma`lumotlar bazasi bo‘sh!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "So‘rov" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "Privilegiyalar" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Muolajalar" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Hodisalar" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dizayner" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "Foydalanuvchi" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sinxronizatsiya qilish" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Ikkilik jurnal" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "O‘zgaruvchilar" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "Kodirovkalar" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "Jadval turlari" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Xatolik" @@ -3180,75 +3177,75 @@ msgstr "Jadvallarni sanash" msgid "There are no recent tables" msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 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:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay oladi." -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan." -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, 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:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Manba baza" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "\"%s\" mavzusi topilmadi!" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "Noto‘g‘ri ma`lumotlar bazasi" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, 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:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi." -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3256,22 +3253,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "Funksiya" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "Operator" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "Qiymati" @@ -3281,7 +3278,7 @@ msgstr "Qiymati" msgid "Table Search" msgstr "Qidirish" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3421,14 +3418,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3688,8 +3685,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/auth/config.auth.lib.php:98 #, 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 "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." @@ -3807,12 +3804,12 @@ msgstr "Jadvallar" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "Ma`lumotlar" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "Fragmentlangan" @@ -3939,18 +3936,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL so‘rovi" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -4048,7 +4045,7 @@ msgstr "" msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" @@ -4059,8 +4056,8 @@ msgstr "" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" @@ -4257,7 +4254,7 @@ msgstr "Asl qiymatlarni tiklash" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4571,7 +4568,7 @@ msgid "Character set of the file" msgstr "Fayl kodirovkasi" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "Format" @@ -4893,7 +4890,7 @@ msgstr "Navigatsiya paneli" msgid "Customize appearance of the navigation frame" msgstr "Navigatsiya paneli ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "Serverlar" @@ -5848,9 +5845,9 @@ msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?" -"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql." -"com/19588]\"MySQL Bugs\"[/a]larga qarang" +"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]" +"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" +"larga qarang" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5952,8 +5949,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5967,8 +5964,8 @@ msgid "" msgstr "" "Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. " "Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]" -"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " -"[kbd]\"phpmyadmin\"[/kbd]" +"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" +"\"phpmyadmin\"[/kbd]" #: libraries/config/messages.inc.php:415 #, fuzzy @@ -6060,8 +6057,8 @@ msgstr "SSL ulanishdan foydalanish" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6332,7 +6329,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "SQL Query box" msgid "Retain query box" @@ -6688,7 +6685,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6696,17 +6693,17 @@ msgid "" "configured)." msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server javob bermayapti" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "Tafsilotlar..." @@ -6767,8 +6764,8 @@ msgstr "Jadval tuzish" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nomi" @@ -6895,12 +6892,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." 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 "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -6911,7 +6908,7 @@ msgid "use this for future exports" msgstr "" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "Fayl kodirovkasi:" @@ -7466,8 +7463,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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:133 @@ -7545,7 +7542,7 @@ msgstr "Hodisa" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -7618,7 +7615,7 @@ msgstr "Mavjud MIME turlari" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "Xost" @@ -7828,8 +7825,8 @@ msgstr "Tarkibini eksport qilish" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." @@ -8024,80 +8021,80 @@ msgstr "SQL bilan moslik rejimi" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nol qiymatlari uchun \"AUTO_INCREMENT\" ishlatmaslik" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "Yashirish" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Ikkilik" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" msgstr "Ma`lumotlar ko‘pligi sabali
    o‘zgartirish qiyishlashishi mumkin" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "Yuklash katalogidan" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Qo‘yilayotgan qatorlar soni: \"%s\"" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "va so‘ng" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" @@ -8125,7 +8122,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "Bajarish" @@ -8145,7 +8142,7 @@ msgstr "Indеks(lar)ni saqlash" msgid "Do you really want to execute the following query?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "O‘zgarish yo‘q" @@ -8401,7 +8398,7 @@ msgstr "" "\"column_comments\" jadvalini yangilash zarur. Batafsil ma`lumot uchun " "dokumentatsiyaga qarang." -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "Xatcho‘p qo‘yilgan SQL so‘rovi" @@ -8457,6 +8454,10 @@ msgstr "" msgid "no description" msgstr "tavsif mavjud emas" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "Belgilashni bekor qilish" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "Tobе sеrvеr konfiguratsiyasi" @@ -8494,8 +8495,8 @@ msgstr "Bosh rеplikatsiya sеrvеri statusi" msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "O‘zgaruvchi" @@ -8522,7 +8523,7 @@ msgstr "Har qaysi foydalanuvchi" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "Matnmaydonini ishlatish" @@ -8555,10 +8556,10 @@ msgid "Generate Password" msgstr "Parol o‘rnatish" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8570,7 +8571,7 @@ msgstr "Quyidagi so‘rovlar bajarildi:" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -8587,7 +8588,7 @@ msgstr "\"%s\" jadvali o‘chirildi" msgid "Event %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -8598,16 +8599,16 @@ msgstr "" msgid "Edit event" msgstr "Serverlarni tahrirlash" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Jarayonlar" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -8624,7 +8625,7 @@ msgstr "Hodisa turi" msgid "Event type" msgstr "Hodisa turi" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -8660,13 +8661,13 @@ msgstr "Oxiri" msgid "On completion preserve" msgstr "To‘la qo‘yish" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8691,7 +8692,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8713,7 +8714,7 @@ msgstr "" msgid "Returns" msgstr "Qaytariladigan tip" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8721,144 +8722,144 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Routine %1$s has been modified." msgstr "\"%s\" jadvali o‘chirildi" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Tahrirlash usuli" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Muolajalar" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "To‘g‘ridan-to‘g‘ri bog‘lanishlar" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Uzunlik/qiymatlar" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Indеks(lar)ni saqlash" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "Qaytariladigan tip" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Uzunlik/qiymatlar" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Jadval parametrlari" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Xavfsizlik" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -9197,7 +9198,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "Noma`lum til: %1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 #, fuzzy #| msgid "Current server" msgid "Current Server" @@ -9230,52 +9231,52 @@ msgstr "Nishon baza" msgid "Click to select" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, 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:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, 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:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Tozalash" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 #, fuzzy #| msgid "Column names" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Shu nomli xatcho‘pni almashtirish" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 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:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "Taqsimlovchi" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "Ushbu so‘rovni qayta ko‘rsatish" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "Faqat ko‘rish" @@ -9386,7 +9387,7 @@ msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "Indeks" @@ -9441,12 +9442,12 @@ msgid "As defined:" msgstr "Qoidaga ko‘ra:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "Birlamchi" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "Matn to‘laligicha" @@ -9460,13 +9461,13 @@ msgstr "" msgid "after %s" msgstr "\"%s\" dan keyin" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Ustun(lar) qo‘shish" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9532,7 +9533,7 @@ msgstr "" msgid "Displays a link to download this image." msgstr "Rasmni yuklab olish uchun bog‘ ko‘rsatish" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -9757,8 +9758,8 @@ msgid "Protocol version" msgstr "Protokol versiyasi" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "Foydalanuvchi" @@ -9916,17 +9917,17 @@ msgstr "" "Server \"Suhosin\" himoya tizimadan foydalanmoqda. Yuzaga kelgan muammolar " "yechimi uchun \"%s\"dokumentatsiya\"%s\" ga qarang." -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "Ma`lumotlar bazasi mavjud emas" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "jadval nomi" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "table name" msgid "Filter tables by name" @@ -9951,7 +9952,7 @@ msgstr "Chap menyuni ko‘rsatish/yashirish" msgid "Save position" msgstr "Jadvallar joylashishini saqlash" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "Bog‘liqlik o‘rnatish" @@ -10016,49 +10017,49 @@ msgstr "Aloqa mavjud bo‘lmagan jadvallarni yashirish/ko‘rsatish" msgid "Number of tables" msgstr "Jadvallar soni" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "Bog‘liqlikni o‘chirish" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Aloqa o‘chirildi" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksport" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "so‘rov bo‘yicha" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Ko‘rinish nomini o‘zgartirish" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Foydalanuvchi nomi" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Tuzish" -#: pmd_general.php:841 +#: pmd_general.php:839 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -10242,13 +10243,13 @@ msgstr "Ko‘rish uchun binar jurnalni tanlang" msgid "Files" msgstr "Fayllar soni" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "So‘rovlarni qisqartirib ko‘rsatish" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" @@ -10264,7 +10265,7 @@ msgstr "Pozitsiya" msgid "Original position" msgstr "Asl pozitsiya" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "Ma`lumot" @@ -10292,11 +10293,11 @@ msgstr "Bosh sеrvеr rеplikatsiyasi" msgid "Slave replication" msgstr "Tobе sеrvеr rеplikatsiyasi" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "Statiskani yoqish" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10561,7 +10562,7 @@ msgid "None" msgstr "Yo‘q" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" @@ -10578,7 +10579,7 @@ msgstr "Administratsiya" msgid "Global privileges" msgstr "Global privilegiyalar" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" @@ -10600,7 +10601,7 @@ msgstr "Foydalanuvchi hisobi haqida ma`lumot" msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -10651,7 +10652,7 @@ msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "Privilegiyalarni tahrirlash" @@ -10666,7 +10667,7 @@ msgid "Export all" msgstr "Eksport" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "Har qaysi" @@ -10688,84 +10689,84 @@ msgstr "Privilegiyalar" msgid "Users overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " "ularni o‘chirish." -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "" "Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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 " "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "Maydon privilegiyalari" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Ma`lumotlar bazalari nomlarida pastki chiziq (_) va foiz (%) belgilari " "ishlatilganda ular oldiga teskari egri chiziq (\\) qo‘yish kerak." -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "va eskisini saqlash." -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10773,45 +10774,45 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "" "Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " "privilegiyalarni berish." -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " "bazalariga to‘liq privilegiyalarni berish." -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "Global" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "Guruhlash belgisi" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -11123,51 +11124,51 @@ msgstr "Ochiq jadvallar ro‘yxati" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Aloqalar" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "So‘rov turi" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funksiyalar" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11175,34 +11176,34 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Boshlang‘ich sahifani sozlash" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "Tavsif" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"." -#: server_status.php:1075 +#: server_status.php:1074 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -11211,21 +11212,21 @@ msgid "" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1077 +#: server_status.php:1076 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1079 +#: server_status.php:1078 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1082 +#: server_status.php:1081 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -11240,11 +11241,11 @@ msgstr "" "uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga " "kiring." -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "Replikatsiya statusi" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11253,47 +11254,47 @@ msgstr "" "shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi " "mumkin." -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "Qabul qilindi" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "Yuborildi" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "Maksimal ulanishlar soni" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "Muvaffaqiyatsiz urinishlar soni" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "Uzildi" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "Buyruq" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-serverga ulanib bo‘lmadi" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11302,16 +11303,16 @@ msgstr "" "Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " "ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11324,11 +11325,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11336,7 +11337,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11344,31 +11345,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Bajariladigan \"INSERT DELAYED\" so‘rovlar soni." -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11378,7 +11379,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11387,7 +11388,7 @@ msgstr "" "Indeksdan birinchi yozuvni o‘qishga bo‘lgan so‘rovlar soni. O‘zgaruvchining " "qiymati katta bo‘lsa, server bir necha marotiba indeksni ko‘rib chiqadi." -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11396,7 +11397,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11406,7 +11407,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11415,7 +11416,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY ... DESC." -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11429,7 +11430,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11441,35 +11442,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni." -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Bufer pulidagi tozalash jarayoni (FLUSH) qo‘llanilgan sahifalar soni." -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11479,7 +11480,7 @@ msgstr "" "ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " "sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11491,11 +11492,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11504,7 +11505,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11513,12 +11514,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB tomonidan amalga oshirilgan o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11526,7 +11527,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11540,51 +11541,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11592,35 +11593,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11629,51 +11630,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11681,7 +11682,7 @@ msgstr "" "Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. " "Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum." -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11689,7 +11690,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11698,17 +11699,17 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Import qilinayotgan fayl formati" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "Indeks keshidagi bloklarni o‘qishga bo‘lgan so‘rovlar soni." -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11720,26 +11721,26 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni." -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11750,19 +11751,19 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kolichestvo strok, ojidayushix vstavki v zaprosax \"INSERT DELAYED\" " "so‘rovlarida qo‘yilishini kutayotgan qatorlar soni." -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11770,42 +11771,42 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb \"fopen" "()\" funksiyasi yordamida ochilgan faylga aytiladi." -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "" "So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar " "tomonidan qoniqtirilgan so‘rovlar soni." -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11817,7 +11818,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11825,19 +11826,19 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11845,13 +11846,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "" "Bog‘lanish mavjud bo‘lgan jadvalda diapazon bo‘yicha qidiruv ishlatgan holda " "bajarilgan birlashma so‘rovlar soni." -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11861,7 +11862,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi." -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11870,17 +11871,17 @@ msgstr "" "birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas." -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni." -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11888,13 +11889,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Agar ushbu server bosh serverga ulangan holda tobe server sifatida " "ishlayotgan bo‘lsa, ushbu o‘zgaruvchiga \"ON\" qiymati belgilanadi." -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11902,12 +11903,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time sekunddan ko‘proq vaqt bajarilgan so‘rovlar soni." -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11917,26 +11918,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "" "Jadvalni to‘laligicha ko‘rib chiqish yordamida bajarilgan sortirovka " "operatsiyalari soni." -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni." -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11949,7 +11950,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11960,11 +11961,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11976,74 +11977,74 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Kuzatish faol emas." -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Boshlash" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Indеks(lar)ni saqlash" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "Yangilash" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR maydonidagi ustunlar soni" -#: server_status.php:1626 +#: server_status.php:1635 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Xatoliklarni boshqarish:" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Asl qiymatlarni tiklash" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -12052,7 +12053,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -12060,18 +12061,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -12079,11 +12080,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -12091,104 +12092,104 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: server_status.php:1679 +#: server_status.php:1690 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Jadvallarni tanlang" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Jadval nomi noto‘g‘ri" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Yangi foydalanuvchi qo‘shish" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL so‘rovlari" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Statiskani ko‘rsatish" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Jadvallarni tanlang" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "So‘rov turi" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "sekundiga" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12657,9 +12658,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:314 #, fuzzy, php-format @@ -13075,35 +13076,35 @@ msgstr "Ma`lumotlar yaxlitligini tekshirish:" msgid "Showing tables" msgstr "Jadvallarni ko‘rsatish" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "Foydalanilayotgan joy" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "Effektivlik" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "Qatorlar statistikasi" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "statik" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "Qator uzunligi" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "Qator hajmi" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -13134,7 +13135,7 @@ msgstr "" msgid "Foreign key constraint" msgstr "Tashqi kalit chegaralari" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -13193,56 +13194,56 @@ msgstr "\"%s\" uchun indeks qo‘shildi" msgid "Show more actions" msgstr "Vеrsiyalarni ko‘rsatish" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Ustun(lar)ni olib tashlash" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Chop etish versiyasi" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "Aloqalarni ko‘rish" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "Jadval tuzilishi tahlili" -#: tbl_structure.php:697 +#: tbl_structure.php:692 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Ustun(lar) qo‘shish" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "Jadval oxiriga" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "Jadval boshiga" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "\"%s\" dan keyin" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "\"%s\" maydon uchun indeks tuzish" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "bo‘laklarga bo‘lingan" @@ -13783,8 +13784,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13919,8 +13920,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14994,8 +14995,8 @@ msgstr "Maksimal ulanishlar soni " #~ "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 "Add a New User" #~ msgstr "Yangi foydalanuvchi qo‘shish" diff --git a/po/zh_CN.po b/po/zh_CN.po index a3e55dba84..0be05b6104 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-04-09 07:19+0200\n" "Last-Translator: Vian Zhao \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: Weblate 0.8\n" @@ -37,53 +37,54 @@ msgstr "" "无法更新目标浏览窗口。可能你已经关闭了父窗口或您浏览器的安全设置阻止了跨窗口" "更新。" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "搜索" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "执行" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "键名" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "说明" @@ -114,13 +115,13 @@ msgstr "数据库注释:" msgid "Table comments" msgstr "表注释" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -129,30 +130,30 @@ msgstr "表注释" msgid "Column" msgstr "字段" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "类型" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -190,8 +191,8 @@ msgstr "链接到" msgid "Comments" msgstr "注释" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -200,15 +201,15 @@ msgstr "注释" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "否" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -223,8 +224,8 @@ msgstr "否" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -239,11 +240,11 @@ msgstr "查看数据库的转存(大纲)。" msgid "No tables found in database." msgstr "数据库中没有表。" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "全选" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "全不选" @@ -319,12 +320,12 @@ msgstr "强制添加" msgid "Switch to copied database" msgstr "切换到复制的数据库" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "整理" @@ -345,17 +346,17 @@ msgstr "编辑或导出关系大纲" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "表" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "行数" @@ -370,21 +371,21 @@ msgstr "使用中" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "创建时间" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "最后更新" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "最后检查" @@ -446,7 +447,7 @@ msgid "Del" msgstr "删除" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "或" @@ -487,85 +488,85 @@ msgstr "提交查询" msgid "Access denied" msgstr "拒绝访问" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "至少一个词" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "所有词" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "精确短语" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "使用正则表达式" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "“%s”的搜索结果 %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "在表 %2$s 中找到 %1$s 个匹配" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "浏览" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "删除 %s 表中所有匹配的记录?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "删除" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "总计: %s 个匹配" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "在表 %2$s 中找到 %1$s 个匹配" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "浏览" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "删除 %s 表中所有匹配的记录?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "删除" + +#: db_search.php:362 msgid "Search in database" msgstr "在数据库中搜索" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "要查找的内容 (通配符: \"%\"):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "查找:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "每个单词用空格 (\" \") 分隔。" -#: db_search.php:318 +#: db_search.php:390 msgid "Inside tables:" msgstr "于下列表:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "包含字段:" @@ -604,8 +605,8 @@ msgstr "追踪已禁用。" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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。" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -613,7 +614,7 @@ msgstr "该视图最少包含的行数,参见%s文档%s。" msgid "View" msgstr "视图" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -623,93 +624,89 @@ msgstr "复制" msgid "Sum" msgstr "总计" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 服务器的默认存储引擎。" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "选中项:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "全选" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "全不选" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "仅选择多余" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "导出" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "打印预览" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "清空" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "删除" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "检查表" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "优化表" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "修复表" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "分析表" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "添加表前缀" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "修改表前缀" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "复制表为新前缀" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "数据字典" @@ -722,9 +719,9 @@ msgstr "已追踪的表" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "数据库" @@ -741,17 +738,17 @@ msgstr "创建" msgid "Updated" msgstr "更新" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "状态" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "操作" @@ -783,7 +780,7 @@ msgstr "结构快照" msgid "Untracked tables" msgstr "未追踪的表" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "追踪表" @@ -925,8 +922,8 @@ msgstr "" #: import.php:86 #, 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来寻找解决方法。" #: import.php:224 import.php:464 @@ -994,13 +991,13 @@ msgstr "" "将无法完成导入操作。" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "您的 SQL 语句已成功运行" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "返回" @@ -1085,8 +1082,8 @@ msgstr "密码不能为空!" msgid "The passwords aren't the same!" msgstr "两次密码不一致!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "添加用户" @@ -1104,7 +1101,7 @@ msgid "Close" msgstr "关闭" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1131,13 +1128,13 @@ msgstr "静态数据" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "总计" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "其它" @@ -1167,7 +1164,7 @@ msgstr "服务器流量 (单位: KB)" msgid "Connections since last refresh" msgstr "自上次刷新起的连接数" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "进程" @@ -1229,13 +1226,13 @@ msgstr "系统交换空间" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1287,7 +1284,7 @@ msgstr "已发送字节数" msgid "Bytes received" msgstr "已接收字节数" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "连接" @@ -1326,11 +1323,11 @@ msgstr "%d 张表" msgid "Questions" msgstr "内部查询" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "流量" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "设置" @@ -1353,8 +1350,8 @@ msgstr "请至少添加一个数据" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "无" @@ -1449,7 +1446,7 @@ msgstr "修改设置" msgid "Current settings" msgstr "当前设置" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 msgid "Chart Title" msgstr "图表标题" @@ -1533,7 +1530,7 @@ msgstr "解释 SQL" #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "时间" @@ -1631,10 +1628,10 @@ msgid "" "config..." msgstr "导入配置失败。正在重设为默认设置..." -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "导入" @@ -1688,9 +1685,9 @@ msgstr "已使用的 变量/公式" msgid "Test" msgstr "测试" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "取消" @@ -1718,9 +1715,9 @@ msgstr "正在删除字段" msgid "Adding Primary Key" msgstr "正在添加主键" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "确定" @@ -1802,7 +1799,7 @@ msgstr "正在删除" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "函数定义中必须包含 RETURN 语句!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "ENUM/SET 编辑器" @@ -1841,8 +1838,8 @@ msgstr "显示查询框" msgid "No rows selected" msgstr "没有选中任何行" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "修改" @@ -1857,7 +1854,7 @@ msgid "%d is not valid row number." msgstr "%d 不是有效行数。" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2359,16 +2356,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "每秒" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "每分钟" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "每小时" @@ -2468,8 +2465,8 @@ msgstr "主键排序" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "选项" @@ -2522,7 +2519,7 @@ msgid "The row has been deleted" msgstr "已删除该行" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "杀死" @@ -2550,27 +2547,27 @@ msgstr "总计" msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "显示图表" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "可视化 GIS 数据" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "新建视图" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "找不到链接" @@ -2643,55 +2640,55 @@ msgstr "必须启用 Cookies 才能登录。" msgid "Javascript must be enabled past this point" msgstr "必须启用 Cookies 才能登录。" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "没有已定义的索引!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "索引" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "紧凑" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "基数" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "注释" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "已删除主键" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "已删除索引 %s " -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "数据库" @@ -2701,7 +2698,7 @@ msgstr "数据库" msgid "Server" msgstr "服务器" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2714,102 +2711,102 @@ msgstr "服务器" msgid "Structure" msgstr "结构" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "插入" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "操作" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "追踪" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "触发器" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "数据表是空的!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "数据库是空的!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "查询" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "权限" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "程序" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "事件" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "设计器" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 msgid "Users" msgstr "用户" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "同步" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "二进制日志" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "变量" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "字符集" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "插件" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "引擎" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "错误" @@ -2848,66 +2845,66 @@ msgstr "最近使用的表" msgid "There are no recent tables" msgstr "没有最近使用的表" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "没有该存储引擎的详细信息。" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "%s 在此 MySQL 服务器上可用。" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s 在此 MySQL 服务器上被禁止了。" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "此 MySQL 服务器不支持 %s 存储引擎。" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 msgid "unknown table status: " msgstr "未知表状态: " -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "源数据库" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "未找到主题 %s !" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "无效的数据库" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "无效的数据表名" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "将表 %1$s 改名为 %2$s 时发生错误" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "已将数据表 %s 改名为 %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "无法保存表界面设置" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -2915,7 +2912,7 @@ msgid "" msgstr "" "清除表用户界面设置失败(查看$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -2924,22 +2921,22 @@ msgid "" msgstr "" "无法保存用户界面属性 \"%s\"。修改将在刷新本页后丢失。请检查表结构是否已修改。" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "函数" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "运算符" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "值" @@ -2947,7 +2944,7 @@ msgstr "值" msgid "Table Search" msgstr "普通搜索" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 msgid "Edit/Insert" msgstr "编辑/插入" @@ -3075,14 +3072,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3342,8 +3339,8 @@ msgstr "欢迎使用 %s" #: libraries/auth/config.auth.lib.php:98 #, 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 来创建一个配置文件。" @@ -3453,12 +3450,12 @@ msgstr "数据表" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "数据" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "多余" @@ -3569,18 +3566,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL 查询" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3668,7 +3665,7 @@ msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" msgid "Click to toggle" msgstr "点击切换" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "从计算机中上传:" @@ -3678,8 +3675,8 @@ msgstr "从计算机中上传:" msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" @@ -3863,7 +3860,7 @@ msgstr "还原默认值" msgid "Allow users to customize this value" msgstr "允许用户自定义该值" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4138,7 +4135,7 @@ msgid "Character set of the file" msgstr "文件字符集" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "格式" @@ -4436,7 +4433,7 @@ msgstr "导航框架" msgid "Customize appearance of the navigation frame" msgstr "自定义导航框架" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "服务器" @@ -5695,7 +5692,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "声明查询框是否在提交后依然显示在屏幕上" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 msgid "Retain query box" msgstr "保留查询框" @@ -6015,21 +6012,21 @@ msgstr "缺少 %s 扩展。请检查 PHP 配置。" msgid "possible deep recursion attack" msgstr "可能的深度递归攻击" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "服务器无响应(或者本地 MySQL 服务器的套接字没有正确配置)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 msgid "The server is not responding." msgstr "服务器没有响应。" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "请检查数据库目录的权限。" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "详细..." @@ -6084,8 +6081,8 @@ msgstr "新建数据表" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "名字" @@ -6185,8 +6182,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 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。" @@ -6196,7 +6193,7 @@ msgid "use this for future exports" msgstr "以后也使用此设置" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "文件的字符集:" @@ -6682,8 +6679,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" #: libraries/engines/pbxt.lib.php:133 @@ -6743,7 +6740,7 @@ msgstr "事件" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "定义" @@ -6804,7 +6801,7 @@ msgstr "显示 MIME 类型" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "主机" @@ -7013,8 +7010,8 @@ msgstr "导出内容" msgid "No data found for GIS visualization." msgstr "未找到用于 GIS 可视化的数据。" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" @@ -7181,75 +7178,75 @@ msgstr "SQL 兼容模式:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要给零值使用自增 (AUTO_INCREMENT)" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "隐藏" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "二进制" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "因长度问题,
    该字段可能无法编辑 " -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "二进制 - 无法编辑" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "网站服务器上传文件夹" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "然后" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "显示插入语句" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "返回上一页" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "插入新数据" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "返回到本页" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "编辑下一行" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7273,7 +7270,7 @@ msgid "To" msgstr "到" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "提交" @@ -7291,7 +7288,7 @@ msgstr "添加前缀" msgid "Do you really want to execute the following query?" msgstr "您真的要" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "无更改" @@ -7541,7 +7538,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "请参见文档中关于如何更新您的 column_comments 表" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "SQL 查询书签" @@ -7590,6 +7587,10 @@ msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。" msgid "no description" msgstr "无说明" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "全不选" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "从服务器配置" @@ -7626,8 +7627,8 @@ msgstr "主服务器状态" msgid "Slave status" msgstr "从服务器状态" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "变量" @@ -7652,7 +7653,7 @@ msgstr "任意用户" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "使用文本域" @@ -7683,10 +7684,10 @@ msgid "Generate Password" msgstr "生成密码" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7697,7 +7698,7 @@ msgstr "下列查询失败了: \"%s\"" msgid "Sorry, we failed to restore the dropped event." msgstr "抱歉,恢复已删除的事件失败。" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "已备份的查询为:" @@ -7712,7 +7713,7 @@ msgstr "已修改事件 %1$s 。" msgid "Event %1$s has been created." msgstr "已创建事件 %1$s 。" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "处理请求时发生错误:" @@ -7721,14 +7722,14 @@ msgstr "处理请求时发生错误:" msgid "Edit event" msgstr "编辑事件" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 msgid "Error in processing request" msgstr "处理请求时的错误" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "详细" @@ -7741,7 +7742,7 @@ msgstr "事件名称" msgid "Event type" msgstr "事件类型" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, php-format msgid "Change to %s" msgstr "改为 %s" @@ -7768,13 +7769,13 @@ msgstr "终止时间" msgid "On completion preserve" msgstr "过期后禁用事件而不删除" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "用户" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "用户必须是 \"用户名@主机名\" 格式" @@ -7799,7 +7800,7 @@ msgstr "请选择一个有效的事件类型。" msgid "You must provide an event definition." msgstr "请输入事件定义。" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "新建" @@ -7819,7 +7820,7 @@ msgstr "事件计划状态" msgid "Returns" msgstr "返回" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 #, fuzzy #| msgid "" #| "You are using PHP's deprecated 'mysql' extension, which is not capable of " @@ -7834,124 +7835,124 @@ msgstr "" "你正在使用 PHP 所不推荐的 'mysql' 扩展,不支持多语句查询。运行部分存储程序" "时可能会失败!请使用改进的 'mysqli' 扩展避免此类问题发生。" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "无效的程序类型: \"%s\"" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "抱歉,恢复已删除的程序失败。" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, php-format msgid "Routine %1$s has been modified." msgstr "已修改程序 %1$s 。" -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, php-format msgid "Routine %1$s has been created." msgstr "已创建程序 %1$s 。" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 msgid "Edit routine" msgstr "编辑程序" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 msgid "Routine name" msgstr "程序名称" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "参数" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 msgid "Direction" msgstr "方向" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "长度/值" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "添加参数" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 msgid "Remove last parameter" msgstr "删除最后一个参数" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "返回类型" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 msgid "Return length/values" msgstr "返回长度/值" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 msgid "Return options" msgstr "返回选项" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "是否固定" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 msgid "Security type" msgstr "安全类型" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "SQL 数据访问" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "请输入程序名称" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "参数方向 \"%s\" 无效。" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "请设置 ENUM、SET、VARCHAR 和 VARBINARY 类型参数的长度/值。" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "请输入每一个参数的名称并设置其类型。" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "请设置一个有效的返回类型。" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "请输入程序定义。" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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 行" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, php-format msgid "Execution results of routine %s" msgstr "程序 %s 的运行结果" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "运行程序" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 msgid "Routine parameters" msgstr "程序参数" @@ -8232,7 +8233,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "未知的语言:%1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "当前服务器" @@ -8263,50 +8264,50 @@ msgstr "目标数据库" msgid "Click to select" msgstr "点击选中" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "在服务器 %s 运行 SQL 查询" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "在数据库 %s 运行 SQL 查询" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "清除" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "替换现有的同名书签" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "不从窗口外覆盖此查询" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "语句定界符" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "在此再次显示此查询 " -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "仅查看" @@ -8401,7 +8402,7 @@ msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号, #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "索引" @@ -8450,12 +8451,12 @@ msgid "As defined:" msgstr "定义:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "主键" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "全文搜索" @@ -8469,12 +8470,12 @@ msgstr "" msgid "after %s" msgstr "于 %s 之后" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "添加 %s 个字段" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "至少要添加一个字段。" @@ -8522,7 +8523,7 @@ msgstr "显示可点击的缩略图。在原比例不变的情况下,可按像 msgid "Displays a link to download this image." msgstr "显示下载此图像的链接。" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8680,8 +8681,8 @@ msgid "Protocol version" msgstr "协议版本" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "用户" @@ -8807,17 +8808,17 @@ msgid "" "issues." msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似的情况。" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "无数据库" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "根据表名快速搜索" -#: navigation.php:239 +#: navigation.php:238 msgid "Filter tables by name" msgstr "根据表名快速搜索" @@ -8838,7 +8839,7 @@ msgstr "显示/隐藏左侧菜单" msgid "Save position" msgstr "保存位置" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "创建关系" @@ -8898,37 +8899,37 @@ msgstr "隐藏/显示没有关联的表" msgid "Number of tables" msgstr "数据表数量" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "删除关系" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "关系运算符" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "EXCEPT" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "子查询" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "改名为" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "新名称" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "聚合" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "当前选项" @@ -9089,13 +9090,13 @@ msgstr "选择要查看的二进制日志" msgid "Files" msgstr "文件" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "截断显示的查询" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "显示完整查询" @@ -9111,7 +9112,7 @@ msgstr "位置" msgid "Original position" msgstr "初始位置" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "信息" @@ -9139,11 +9140,11 @@ msgstr "主复制" msgid "Slave replication" msgstr "从复制" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "启用统计" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9384,7 +9385,7 @@ msgid "None" msgstr "无" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "按表指定权限" @@ -9401,7 +9402,7 @@ msgstr "管理" msgid "Global privileges" msgstr "全局权限" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "按数据库指定权限" @@ -9421,7 +9422,7 @@ msgstr "登录信息" msgid "Do not change the password" msgstr "保持原密码" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "未找到用户。" @@ -9470,7 +9471,7 @@ msgstr "已成功删除选中的用户。" msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "编辑权限" @@ -9483,7 +9484,7 @@ msgid "Export all" msgstr "全部导出" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "任意" @@ -9501,118 +9502,118 @@ msgstr "权限" msgid "Users overview" msgstr "用户概况" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "授权" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "删除选中的用户" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "撤销用户所有权限,然后删除用户。" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "按字段指定权限" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "在下列数据库添加权限" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "在下列数据表添加权限" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "修改登录信息/复制用户" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "创建具有相同权限的新用户然后 ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... 保留旧用户。" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... 从用户表中删除旧用户。" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... 撤销旧用户的所有权限,然后删除旧用户。" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... 从用户表中删除旧用户,然后重新载入权限。" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "用户数据库" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "创建与用户同名的数据库并授予所有权限" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予数据库“%s”的所有权限。" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "用户可以访问“%s”" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "全局" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "按数据库指定" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "通配符" -#: server_privileges.php:2578 +#: server_privileges.php:2573 msgid "User has been added." msgstr "用户已添加。" @@ -9887,29 +9888,29 @@ msgstr "仅显示报警值" msgid "Filter by category..." msgstr "按分类显示" -#: server_status.php:870 +#: server_status.php:869 msgid "Show unformatted values" msgstr "显示原始值" -#: server_status.php:874 +#: server_status.php:873 msgid "Related links:" msgstr "相关链接:" -#: server_status.php:907 +#: server_status.php:906 msgid "Run analyzer" msgstr "运行分析器" -#: server_status.php:908 +#: server_status.php:907 msgid "Instructions" msgstr "说明" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "建议系统可以通过分析服务器状态变量对服务器变量的设置提出建议。" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -9918,7 +9919,7 @@ msgstr "" "请注意本系统所提出的建议建立在简单计算以及通用场合中,可能并不能满足您系统的" "实际需求。" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -9927,7 +9928,7 @@ msgstr "" "在修改任何设置之前,请确定您确实知道在修改什么设置 (通过阅读文档) 并知道如何" "撤销改变。错误的设置可能导致与预期完全相反的结果。" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -9937,45 +9938,45 @@ msgstr "" "效果就撤销改变。" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, php-format msgid "Questions since startup: %s" msgstr "自启动以来的内部查询: %s" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "说明" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "查询数量" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "自启动以来的网络流量: %s" -#: server_status.php:1064 +#: server_status.php:1063 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "此 MySQL 服务器已运行 %1$s。启动时间为 %2$s 。" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9983,11 +9984,11 @@ msgstr "" "要获得更多关于此服务器的复制状态,请查看复制状态信息" "。" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "复制状态" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9995,45 +9996,45 @@ msgstr "" "在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" "确" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "已接收" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "已发送" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "最大并发连接数" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "已失败" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "已取消" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "命令" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "因客户端没有关闭连接而中止的连接数。" -#: server_status.php:1320 +#: server_status.php:1321 msgid "The number of failed attempts to connect to the MySQL server." msgstr "尝试连接到 MySQL 服务器但失败的连接数。" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10042,16 +10043,16 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10061,17 +10062,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10079,29 +10080,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10110,7 +10111,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10119,14 +10120,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10135,7 +10136,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10143,7 +10144,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " "DESC 的查询。" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10153,7 +10154,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10163,35 +10164,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "空闲页数。" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10200,7 +10201,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10211,11 +10212,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10223,24 +10224,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10252,85 +10253,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "数据读取总数。" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "数据写入总数。" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日志缓存太小而必须等待其被写入所造成的等待数。" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "创建的页数。" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10338,81 +10339,81 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "读取的页数。" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "写入的页数。" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "导入文件的格式" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10421,26 +10422,26 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10449,35 +10450,35 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "自服务器启动以来的最高并发连接数。" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10486,19 +10487,19 @@ msgstr "" "查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY " "CACHE 语句解决。" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "缓存命中数。" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10508,7 +10509,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10516,19 +10517,19 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10536,11 +10537,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10548,7 +10549,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10556,36 +10557,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10594,23 +10595,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "排序的行数。" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10620,7 +10621,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -10629,11 +10630,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10644,64 +10645,64 @@ msgstr "" "thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提" "升)。" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "线程缓存命中率 %%" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" -#: server_status.php:1578 +#: server_status.php:1583 msgid "Start Monitor" msgstr "启动监控" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "说明/设置" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "完成排列/编辑图表" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 msgid "Add chart" msgstr "添加图表" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "排列/编辑图表" -#: server_status.php:1605 +#: server_status.php:1614 msgid "Refresh rate" msgstr "刷新频率" -#: server_status.php:1610 +#: server_status.php:1619 msgid "Chart columns" msgstr "每行图表个数" -#: server_status.php:1626 +#: server_status.php:1635 msgid "Chart arrangement" msgstr "图表排列" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" "图表排列存储在浏览器本地存储。如果你设置了一个复杂的排列,请导出该设置。" -#: server_status.php:1627 +#: server_status.php:1636 msgid "Reset to default" msgstr "恢复默认" -#: server_status.php:1631 +#: server_status.php:1640 msgid "Monitor Instructions" msgstr "监控说明" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10713,7 +10714,7 @@ msgstr "" "需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。" "请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10723,11 +10724,11 @@ msgstr "" "很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志" "的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "使用监控:" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -10736,7 +10737,7 @@ msgstr "" "您的浏览器将会以一定的频率刷新所有已显示的图表。您可以在'设置'中添加图表或修" "改刷新频率,您也可以通过每个图表的齿轮图标来删除图表。" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10746,11 +10747,11 @@ msgstr "" "要从日志中显示查询,请通过按下鼠标左键并拖拽选择一段时间范围。确定后,将会显" "示出分好组的查询,您可以点击任意 SELECT 查询以进一步分析。" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "请注意:" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10761,85 +10762,85 @@ msgstr "" "载的任务,建议选择一段小范围的时间并在用完监控后禁止 general_log 并清空它的" "表。" -#: server_status.php:1675 +#: server_status.php:1686 msgid "Preset chart" msgstr "预置图表" -#: server_status.php:1679 +#: server_status.php:1690 msgid "Status variable(s)" msgstr "状态变量" -#: server_status.php:1681 +#: server_status.php:1692 msgid "Select series:" msgstr "选择数据:" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "常用监控" -#: server_status.php:1698 +#: server_status.php:1709 msgid "or type variable name:" msgstr "或输入变量名:" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "独立显示" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "应用除数" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "在值后附加单位" -#: server_status.php:1717 +#: server_status.php:1728 msgid "Add this series" msgstr "添加该数据" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "清除所有数据" -#: server_status.php:1722 +#: server_status.php:1733 msgid "Series in Chart:" msgstr "图表中的数据:" -#: server_status.php:1735 +#: server_status.php:1748 msgid "Log statistics" msgstr "日志统计" -#: server_status.php:1736 +#: server_status.php:1749 msgid "Selected time range:" msgstr "选择时间范围:" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "去除 INSERT 语句中的变量值以获得更好的分组" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "请选择生成统计的来源日志。" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "结果将根据查询语句分组。" -#: server_status.php:1758 +#: server_status.php:1771 msgid "Query analyzer" msgstr "查询分析器" -#: server_status.php:1807 +#: server_status.php:1822 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 秒" -#: server_status.php:1810 +#: server_status.php:1825 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11587,35 +11588,35 @@ msgstr "检查引用完整性:" msgid "Showing tables" msgstr "正在显示表" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "已用空间" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "有效" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "行统计" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "静态" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "动态" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "行长度" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "行大小 " -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "下一个自增值" @@ -11638,7 +11639,7 @@ msgstr "不需要一个和外键关系一致的内联关系" msgid "Foreign key constraint" msgstr "外键约束" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "空间" @@ -11690,51 +11691,51 @@ msgstr "已将 %s 设为索引" msgid "Show more actions" msgstr "显示更多操作" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "删除字段" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 msgid "Edit view" msgstr "编辑视图" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "关系查看" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "规划表结构" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "添加字段" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "于表结尾" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "于表开头" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "于 %s 之后" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "在第 %s 个字段创建索引" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "已分区" @@ -12230,8 +12231,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12358,8 +12359,8 @@ msgstr "根据系统内存,考虑增加 sort_buffer_size 和/或 read_rnd_buff #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "%s%% 的排序引发临时表创建,该值应低于 10%%。" #: libraries/advisory_rules.txt:211 @@ -13554,8 +13555,8 @@ msgstr "concurrent_insert 被设为 0" #~ "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 04bf6338f6..43ca5933a7 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"POT-Creation-Date: 2012-06-26 10:18-0400\n" "PO-Revision-Date: 2012-05-23 10:16+0200\n" "Last-Translator: MoA Chung \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: Weblate 1.0\n" @@ -37,53 +37,54 @@ msgstr "" "無法更新目標瀏覽視窗。可能您已經關閉了父視窗或您瀏覽器的安全設定阻止了跨視窗" "更新" -#: browse_foreigners.php:168 libraries/Menu.class.php:264 -#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: browse_foreigners.php:168 libraries/Menu.class.php:259 +#: libraries/Menu.class.php:353 libraries/common.lib.php:3309 #: libraries/common.lib.php:3316 libraries/common.lib.php:3512 #: libraries/common.lib.php:3513 msgid "Search" msgstr "搜尋" #: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 -#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: db_operations.php:568 db_operations.php:597 db_search.php:423 #: gis_data_editor.php:304 js/messages.php:231 #: libraries/DisplayResults.class.php:1402 #: libraries/TableSearch.class.php:1116 libraries/auth/cookie.auth.lib.php:268 #: libraries/core.lib.php:534 libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319 -#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: libraries/insert_edit.lib.php:1542 libraries/insert_edit.lib.php:1577 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:497 libraries/rte/rte_routines.lib.php:974 -#: libraries/rte/rte_routines.lib.php:1469 +#: libraries/rte/rte_events.lib.php:497 +#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1515 #: libraries/rte/rte_triggers.lib.php:381 #: libraries/schema/User_Schema.class.php:150 #: libraries/schema/User_Schema.class.php:207 #: libraries/schema/User_Schema.class.php:449 #: libraries/schema/User_Schema.class.php:489 -#: libraries/sql_query_form.lib.php:362 libraries/sql_query_form.lib.php:417 -#: libraries/sql_query_form.lib.php:472 libraries/tbl_properties.inc.php:720 +#: libraries/sql_query_form.lib.php:376 libraries/sql_query_form.lib.php:433 +#: libraries/sql_query_form.lib.php:495 libraries/tbl_properties.inc.php:720 #: pmd_pdf.php:143 prefs_manage.php:269 prefs_manage.php:319 -#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1972 -#: server_privileges.php:2336 server_privileges.php:2383 -#: server_privileges.php:2415 server_replication.php:264 +#: server_binlog.php:104 server_privileges.php:846 server_privileges.php:1967 +#: server_privileges.php:2331 server_privileges.php:2378 +#: server_privileges.php:2410 server_replication.php:264 #: server_replication.php:347 server_replication.php:378 #: server_synchronize.php:1483 tbl_indexes.php:313 tbl_operations.php:293 #: tbl_operations.php:330 tbl_operations.php:538 tbl_operations.php:601 -#: tbl_operations.php:804 tbl_structure.php:719 tbl_structure.php:751 +#: tbl_operations.php:804 tbl_structure.php:714 tbl_structure.php:746 #: tbl_tracking.php:489 tbl_tracking.php:631 view_create.php:189 #: view_operations.php:94 msgid "Go" msgstr "執行" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:457 tbl_tracking.php:365 +#: libraries/Index.class.php:461 tbl_tracking.php:365 msgid "Keyname" msgstr "鍵名" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:131 server_status.php:1498 +#: server_plugins.php:131 server_status.php:1503 msgid "Description" msgstr "說明" @@ -114,13 +115,13 @@ msgstr "資料庫註釋: " msgid "Table comments" msgstr "表註釋" -#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:465 #: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1169 #: libraries/export/htmlword.php:245 libraries/export/htmlword.php:357 #: libraries/export/latex.php:481 libraries/export/odt.php:326 #: libraries/export/odt.php:426 libraries/export/texytext.php:238 #: libraries/export/texytext.php:340 libraries/export/texytext.php:405 -#: libraries/insert_edit.lib.php:1389 +#: libraries/insert_edit.lib.php:1561 #: libraries/schema/Pdf_Relation_Schema.class.php:1343 #: libraries/schema/Pdf_Relation_Schema.class.php:1364 #: libraries/tbl_properties.inc.php:311 tbl_indexes.php:229 @@ -129,30 +130,30 @@ msgstr "表註釋" msgid "Column" msgstr "欄位" -#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:462 #: libraries/TableSearch.class.php:186 libraries/db_structure.lib.php:46 #: libraries/export/htmlword.php:248 libraries/export/htmlword.php:360 #: libraries/export/latex.php:482 libraries/export/odt.php:329 #: libraries/export/odt.php:429 libraries/export/texytext.php:239 -#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:223 -#: libraries/insert_edit.lib.php:226 libraries/rte/rte_list.lib.php:54 -#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:840 -#: libraries/rte/rte_routines.lib.php:865 -#: libraries/rte/rte_routines.lib.php:1387 +#: libraries/export/texytext.php:341 libraries/insert_edit.lib.php:256 +#: libraries/insert_edit.lib.php:260 libraries/rte/rte_list.lib.php:54 +#: libraries/rte/rte_list.lib.php:80 libraries/rte/rte_routines.lib.php:880 +#: libraries/rte/rte_routines.lib.php:905 +#: libraries/rte/rte_routines.lib.php:1433 #: libraries/schema/Pdf_Relation_Schema.class.php:1344 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:85 server_privileges.php:2429 +#: libraries/tbl_properties.inc.php:85 server_privileges.php:2424 #: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 #: tbl_tracking.php:366 msgid "Type" msgstr "類型" -#: db_datadict.php:166 libraries/Index.class.php:464 +#: db_datadict.php:166 libraries/Index.class.php:468 #: libraries/TableSearch.class.php:1170 libraries/export/htmlword.php:251 #: libraries/export/htmlword.php:363 libraries/export/latex.php:483 #: libraries/export/odt.php:332 libraries/export/odt.php:432 #: libraries/export/texytext.php:240 libraries/export/texytext.php:342 -#: libraries/insert_edit.lib.php:1398 +#: libraries/insert_edit.lib.php:1570 #: libraries/schema/Pdf_Relation_Schema.class.php:1346 #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/tbl_properties.inc.php:92 tbl_printview.php:134 @@ -190,8 +191,8 @@ msgstr "連結到" msgid "Comments" msgstr "註釋" -#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 -#: libraries/Index.class.php:386 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:360 +#: libraries/Index.class.php:387 libraries/Index.class.php:737 #: libraries/config.values.php:52 libraries/config.values.php:67 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597 #: libraries/export/latex.php:549 libraries/export/odt.php:699 @@ -200,15 +201,15 @@ msgstr "註釋" #: libraries/user_preferences.lib.php:305 prefs_manage.php:128 #: server_privileges.php:1602 server_privileges.php:1612 #: server_privileges.php:1896 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2253 -#: server_privileges.php:2546 sql.php:364 sql.php:431 tbl_printview.php:191 +#: server_privileges.php:2243 server_privileges.php:2248 +#: server_privileges.php:2541 sql.php:364 sql.php:431 tbl_printview.php:191 #: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "否" -#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:360 -#: libraries/Index.class.php:385 libraries/Index.class.php:704 +#: db_datadict.php:235 js/messages.php:250 libraries/Index.class.php:361 +#: libraries/Index.class.php:386 libraries/Index.class.php:737 #: libraries/config.values.php:51 libraries/config.values.php:66 #: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598 #: libraries/export/latex.php:549 libraries/export/odt.php:700 @@ -223,8 +224,8 @@ msgstr "否" #: server_databases.php:103 server_databases.php:110 #: server_privileges.php:1600 server_privileges.php:1610 #: server_privileges.php:1893 server_privileges.php:1907 -#: server_privileges.php:2248 server_privileges.php:2251 -#: server_privileges.php:2546 sql.php:430 tbl_printview.php:192 +#: server_privileges.php:2243 server_privileges.php:2246 +#: server_privileges.php:2541 sql.php:430 tbl_printview.php:192 #: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" @@ -239,11 +240,11 @@ msgstr "查看資料庫的轉存(大綱)" msgid "No tables found in database." msgstr "資料庫中沒有表" -#: db_export.php:42 db_search.php:337 server_export.php:26 +#: db_export.php:42 db_search.php:407 server_export.php:26 msgid "Select All" msgstr "全選" -#: db_export.php:44 db_search.php:340 server_export.php:28 +#: db_export.php:44 db_search.php:410 server_export.php:28 msgid "Unselect All" msgstr "全不選" @@ -320,12 +321,12 @@ msgstr "新增 constraints" msgid "Switch to copied database" msgstr "切換到複製的資料庫" -#: db_operations.php:588 libraries/Index.class.php:463 +#: db_operations.php:588 libraries/Index.class.php:467 #: libraries/TableSearch.class.php:187 libraries/build_html_for_db.lib.php:20 #: libraries/db_structure.lib.php:48 libraries/mysql_charsets.lib.php:113 #: libraries/tbl_properties.inc.php:90 libraries/tbl_properties.inc.php:820 #: server_collations.php:38 server_collations.php:50 tbl_operations.php:391 -#: tbl_structure.php:204 tbl_structure.php:928 tbl_tracking.php:305 +#: tbl_structure.php:204 tbl_structure.php:923 tbl_tracking.php:305 #: tbl_tracking.php:371 msgid "Collation" msgstr "排序規則" @@ -346,17 +347,17 @@ msgstr "編輯或匯出關聯大綱" #: libraries/db_structure.lib.php:32 libraries/export/pdf.php:135 #: libraries/export/xml.php:403 libraries/rte/rte_list.lib.php:65 #: libraries/rte/rte_triggers.lib.php:318 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2023 -#: server_privileges.php:2081 server_privileges.php:2350 +#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2018 +#: server_privileges.php:2076 server_privileges.php:2345 #: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "表" #: db_printview.php:100 db_tables_search.php:24 db_tables_search.php:53 -#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31 +#: libraries/Table.class.php:283 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/import.lib.php:164 #: navigation.php:621 navigation.php:654 sql.php:963 tbl_printview.php:369 -#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:938 +#: tbl_structure.php:464 tbl_structure.php:538 tbl_structure.php:933 msgid "Rows" msgstr "行數" @@ -371,21 +372,21 @@ msgstr "使用中" #: db_printview.php:184 libraries/db_info.inc.php:76 #: libraries/db_structure.lib.php:60 libraries/export/sql.php:911 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 -#: tbl_structure.php:970 +#: tbl_structure.php:965 msgid "Creation" msgstr "建立時間" #: db_printview.php:193 libraries/db_info.inc.php:81 #: libraries/db_structure.lib.php:65 libraries/export/sql.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 -#: tbl_structure.php:978 +#: tbl_structure.php:973 msgid "Last update" msgstr "最後更新" #: db_printview.php:202 libraries/db_info.inc.php:86 #: libraries/db_structure.lib.php:70 libraries/export/sql.php:933 #: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 -#: tbl_structure.php:986 +#: tbl_structure.php:981 msgid "Last check" msgstr "最後檢查" @@ -447,7 +448,7 @@ msgid "Del" msgstr "刪除" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:540 db_qbe.php:571 -#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1053 +#: libraries/TableSearch.class.php:757 libraries/insert_edit.lib.php:1184 #: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "或" @@ -488,87 +489,87 @@ msgstr "送出查詢" msgid "Access denied" msgstr "拒絕訪問" -#: db_search.php:46 db_search.php:304 +#: db_search.php:46 db_search.php:376 msgid "at least one of the words" msgstr "至少一個字" -#: db_search.php:47 db_search.php:305 +#: db_search.php:47 db_search.php:377 msgid "all words" msgstr "所有詞" -#: db_search.php:48 db_search.php:306 +#: db_search.php:48 db_search.php:378 msgid "the exact phrase" msgstr "精確短語" -#: db_search.php:49 db_search.php:307 +#: db_search.php:49 db_search.php:379 msgid "as regular expression" msgstr "以正則運算式 (regular expression) 搜索" -#: db_search.php:219 +#: db_search.php:239 #, php-format msgid "Search results for \"%s\" %s:" msgstr "“%s”的搜尋結果 %s:" -#: db_search.php:242 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" -msgid "%1$s match inside table %2$s" -msgid_plural "%1$s matches inside table %2$s" -msgstr[0] "%s 筆資料符合 - 於資料表 %s" - -#: db_search.php:250 libraries/Menu.class.php:251 -#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 -#: libraries/common.lib.php:3511 tbl_structure.php:575 -msgid "Browse" -msgstr "瀏覽" - -#: db_search.php:255 -#, php-format -msgid "Delete the matches for the %s table?" -msgstr "刪除 %s 資料表中符合的資料?" - -#: db_search.php:255 libraries/DisplayResults.class.php:2611 -#: libraries/DisplayResults.class.php:4215 -#: libraries/schema/User_Schema.class.php:200 -#: libraries/schema/User_Schema.class.php:276 -#: libraries/schema/User_Schema.class.php:311 -#: libraries/schema/User_Schema.class.php:341 -#: libraries/sql_query_form.lib.php:410 pmd_general.php:454 -#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 -msgid "Delete" -msgstr "刪除" - -#: db_search.php:269 +#: db_search.php:267 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "總計: %s 項資料符合" -#: db_search.php:292 +#: db_search.php:296 +#, fuzzy, php-format +#| msgid "%s match inside table %s" +#| msgid_plural "%s matches inside table %s" +msgid "%1$s match in %2$s" +msgid_plural "%1$s matches in %2$s" +msgstr[0] "%s 筆資料符合 - 於資料表 %s" + +#: db_search.php:311 libraries/Menu.class.php:246 +#: libraries/common.lib.php:3311 libraries/common.lib.php:3510 +#: libraries/common.lib.php:3511 tbl_structure.php:570 +msgid "Browse" +msgstr "瀏覽" + +#: db_search.php:318 +#, php-format +msgid "Delete the matches for the %s table?" +msgstr "刪除 %s 資料表中符合的資料?" + +#: db_search.php:322 libraries/DisplayResults.class.php:2611 +#: libraries/DisplayResults.class.php:4215 +#: libraries/schema/User_Schema.class.php:200 +#: libraries/schema/User_Schema.class.php:276 +#: libraries/schema/User_Schema.class.php:311 +#: libraries/schema/User_Schema.class.php:341 +#: libraries/sql_query_form.lib.php:426 pmd_general.php:452 +#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 +#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579 +msgid "Delete" +msgstr "刪除" + +#: db_search.php:362 msgid "Search in database" msgstr "在資料庫中搜尋" -#: db_search.php:295 +#: db_search.php:366 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "要搜尋的文字或數值 (萬用字元:“%”):" -#: db_search.php:300 +#: db_search.php:373 msgid "Find:" msgstr "搜尋:" -#: db_search.php:304 db_search.php:305 +#: db_search.php:376 db_search.php:377 msgid "Words are separated by a space character (\" \")." msgstr "每個單詞用空格 (“ ”) 分隔" -#: db_search.php:318 +#: db_search.php:390 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "於以下表:" -#: db_search.php:348 +#: db_search.php:414 msgid "Inside column:" msgstr "於以下欄位:" @@ -607,8 +608,8 @@ msgstr "追蹤已停用" #: db_structure.php:523 libraries/DisplayResults.class.php:4139 #, 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 "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。" #: db_structure.php:541 db_structure.php:575 libraries/Menu.class.php:186 @@ -616,7 +617,7 @@ msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentat msgid "View" msgstr "view" -#: db_structure.php:618 libraries/Menu.class.php:492 +#: db_structure.php:618 libraries/Menu.class.php:487 #: libraries/db_structure.lib.php:35 server_replication.php:33 #: server_replication.php:191 server_status.php:612 msgid "Replication" @@ -626,93 +627,89 @@ msgstr "複製" msgid "Sum" msgstr "總計" -#: db_structure.php:629 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:350 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 伺服器的預設儲存引擎" -#: db_structure.php:677 db_structure.php:694 db_structure.php:695 -#: libraries/DisplayResults.class.php:4257 -#: libraries/DisplayResults.class.php:4263 libraries/mult_submits.inc.php:38 -#: server_databases.php:294 server_databases.php:299 -#: server_privileges.php:1930 server_privileges.php:1938 tbl_structure.php:561 -#: tbl_structure.php:570 +#: db_structure.php:677 db_structure.php:689 db_structure.php:690 +#: libraries/DisplayResults.class.php:4231 +#: libraries/DisplayResults.class.php:4236 libraries/mult_submits.inc.php:38 +#: server_databases.php:294 server_databases.php:297 +#: server_privileges.php:1930 server_privileges.php:1933 tbl_structure.php:561 +#: tbl_structure.php:565 msgid "With selected:" msgstr "選中項:" -#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: db_structure.php:678 db_structure.php:679 +#: libraries/DisplayResults.class.php:4234 +#: libraries/DisplayResults.class.php:4235 server_databases.php:295 #: server_databases.php:296 server_privileges.php:784 -#: server_privileges.php:1933 tbl_structure.php:564 +#: server_privileges.php:1931 server_privileges.php:1932 tbl_structure.php:563 msgid "Check All" msgstr "全選" -#: db_structure.php:684 libraries/DisplayResults.class.php:4249 -#: libraries/replication_gui.lib.php:35 server_databases.php:298 -#: server_privileges.php:787 server_privileges.php:1937 tbl_structure.php:568 -msgid "Uncheck All" -msgstr "全不選" - -#: db_structure.php:689 +#: db_structure.php:684 msgid "Check tables having overhead" msgstr "僅選擇多餘" -#: db_structure.php:697 libraries/DisplayResults.class.php:4278 -#: libraries/DisplayResults.class.php:4419 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:366 libraries/Menu.class.php:465 +#: db_structure.php:692 libraries/DisplayResults.class.php:4251 +#: libraries/DisplayResults.class.php:4392 libraries/Menu.class.php:271 +#: libraries/Menu.class.php:361 libraries/Menu.class.php:460 #: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 -#: server_status.php:1627 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1937 +#: server_status.php:1636 setup/frames/menu.inc.php:22 msgid "Export" msgstr "匯出" -#: db_structure.php:699 db_structure.php:747 -#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 -#: tbl_structure.php:656 +#: db_structure.php:694 db_structure.php:742 +#: libraries/DisplayResults.class.php:4326 libraries/Header.class.php:259 +#: tbl_structure.php:651 msgid "Print view" msgstr "列印預覽" -#: db_structure.php:703 libraries/common.lib.php:3519 +#: db_structure.php:698 libraries/common.lib.php:3519 #: libraries/common.lib.php:3520 msgid "Empty" msgstr "清空" -#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: db_structure.php:700 db_tracking.php:102 libraries/Index.class.php:525 #: libraries/common.lib.php:3517 libraries/common.lib.php:3518 -#: server_databases.php:300 tbl_structure.php:148 tbl_structure.php:149 -#: tbl_structure.php:585 +#: server_databases.php:298 tbl_structure.php:148 tbl_structure.php:149 +#: tbl_structure.php:580 msgid "Drop" msgstr "刪除" -#: db_structure.php:707 tbl_operations.php:626 +#: db_structure.php:702 tbl_operations.php:626 msgid "Check table" msgstr "檢查表" -#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 +#: db_structure.php:705 tbl_operations.php:683 tbl_structure.php:873 msgid "Optimize table" msgstr "最佳化表" -#: db_structure.php:712 tbl_operations.php:668 +#: db_structure.php:707 tbl_operations.php:668 msgid "Repair table" msgstr "修復表" -#: db_structure.php:715 tbl_operations.php:653 +#: db_structure.php:710 tbl_operations.php:653 msgid "Analyze table" msgstr "分析表" -#: db_structure.php:717 +#: db_structure.php:712 msgid "Add prefix to table" msgstr "資料表名稱增加前綴文字" -#: db_structure.php:719 libraries/mult_submits.inc.php:274 +#: db_structure.php:714 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "覆蓋資料表名稱的前綴文字" -#: db_structure.php:721 libraries/mult_submits.inc.php:274 +#: db_structure.php:716 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "複製資料表名稱的前綴文字" -#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:745 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "資料字典" @@ -725,9 +722,9 @@ msgstr "已追蹤的表" #: libraries/export/latex.php:228 libraries/export/odt.php:162 #: libraries/export/pdf.php:134 libraries/export/sql.php:731 #: libraries/export/texytext.php:102 libraries/export/xml.php:330 -#: server_databases.php:190 server_privileges.php:2018 -#: server_privileges.php:2081 server_privileges.php:2344 -#: server_status.php:1256 server_synchronize.php:1451 +#: server_databases.php:190 server_privileges.php:2013 +#: server_privileges.php:2076 server_privileges.php:2339 +#: server_status.php:1255 server_synchronize.php:1451 #: server_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "資料庫" @@ -744,17 +741,17 @@ msgstr "建立" msgid "Updated" msgstr "更新" -#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:450 #: libraries/rte/rte_events.lib.php:384 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1259 sql.php:1031 tbl_tracking.php:715 +#: server_status.php:1258 sql.php:1031 tbl_tracking.php:715 msgid "Status" msgstr "狀態" -#: db_tracking.php:86 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:459 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:53 #: libraries/rte/rte_list.lib.php:67 libraries/rte/rte_list.lib.php:79 #: server_databases.php:225 server_privileges.php:1867 -#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 +#: server_privileges.php:2080 server_privileges.php:2427 tbl_structure.php:220 msgid "Action" msgstr "動作" @@ -786,7 +783,7 @@ msgstr "結構快照" msgid "Untracked tables" msgstr "未追蹤的表" -#: db_tracking.php:203 tbl_structure.php:682 +#: db_tracking.php:203 tbl_structure.php:677 msgid "Track table" msgstr "追蹤資料表" @@ -932,8 +929,8 @@ msgstr "" #: import.php:86 #, 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 了解如何解決此限制." #: import.php:224 import.php:464 @@ -1003,13 +1000,13 @@ msgstr "" "將無法完成匯入操作" #: import.php:520 libraries/DisplayResults.class.php:3736 -#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1214 -#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231 +#: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1260 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:231 #: tbl_relation.php:293 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "您的 SQL 語法已順利執行" -#: import_status.php:119 libraries/common.lib.php:721 +#: import_status.php:92 libraries/common.lib.php:721 #: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "返回" @@ -1099,8 +1096,8 @@ msgstr "密碼不能爲空!" msgid "The passwords aren't the same!" msgstr "兩次密碼不一致!" -#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 -#: server_privileges.php:2393 server_privileges.php:2589 +#: js/messages.php:55 server_privileges.php:1952 server_privileges.php:1976 +#: server_privileges.php:2388 server_privileges.php:2584 msgid "Add user" msgstr "新增使用者" @@ -1118,7 +1115,7 @@ msgid "Close" msgstr "關閉" #: js/messages.php:61 js/messages.php:284 -#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:490 #: libraries/common.lib.php:657 libraries/common.lib.php:1229 #: libraries/common.lib.php:3521 libraries/common.lib.php:3522 #: libraries/config/messages.inc.php:490 @@ -1145,13 +1142,13 @@ msgstr "靜態資料" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:169 server_databases.php:253 -#: server_status.php:1134 server_status.php:1203 tbl_printview.php:330 -#: tbl_structure.php:866 +#: server_status.php:1133 server_status.php:1202 tbl_printview.php:330 +#: tbl_structure.php:861 msgid "Total" msgstr "總計" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:618 server_status.php:1028 +#: js/messages.php:70 server_status.php:618 server_status.php:1027 msgid "Other" msgstr "其他" @@ -1181,7 +1178,7 @@ msgstr "伺服器流量(單位為KiB,即2^10)" msgid "Connections since last refresh" msgstr "最後一次連線" -#: js/messages.php:80 js/messages.php:118 server_status.php:1252 +#: js/messages.php:80 js/messages.php:118 server_status.php:1251 msgid "Processes" msgstr "處理" @@ -1251,13 +1248,13 @@ msgstr "系統Swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 -#: server_status.php:1707 +#: server_status.php:1718 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 -#: server_status.php:1707 +#: server_status.php:1718 msgid "KiB" msgstr "KB" @@ -1315,7 +1312,7 @@ msgstr "Bytes 送出" msgid "Bytes received" msgstr "Bytes 已接收" -#: js/messages.php:117 server_status.php:1157 +#: js/messages.php:117 server_status.php:1156 msgid "Connections" msgstr "連線" @@ -1358,11 +1355,11 @@ msgstr "%s 張資料表" msgid "Questions" msgstr "版本" -#: js/messages.php:132 server_status.php:1106 +#: js/messages.php:132 server_status.php:1105 msgid "Traffic" msgstr "流量" -#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 +#: js/messages.php:133 libraries/Menu.class.php:468 server_status.php:1587 msgid "Settings" msgstr "設定" @@ -1387,8 +1384,8 @@ msgstr "請至少增加一個變數" #: js/messages.php:139 libraries/DisplayResults.class.php:1238 #: libraries/TableSearch.class.php:815 libraries/TableSearch.class.php:955 #: libraries/display_export.lib.php:323 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:541 -#: server_privileges.php:2234 server_status.php:1285 server_status.php:1724 +#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 +#: server_privileges.php:2229 server_status.php:1286 server_status.php:1735 msgid "None" msgstr "無" @@ -1487,7 +1484,7 @@ msgstr "管理我的設定" msgid "Current settings" msgstr "更多設定" -#: js/messages.php:164 server_status.php:1672 +#: js/messages.php:164 server_status.php:1683 #, fuzzy #| msgid "Report title:" msgid "Chart Title" @@ -1579,7 +1576,7 @@ msgstr "SQL說明 " #: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449 #: libraries/export/odt.php:534 libraries/export/texytext.php:408 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1257 sql.php:1032 msgid "Time" msgstr "時間" @@ -1688,10 +1685,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:285 -#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 +#: js/messages.php:212 libraries/Menu.class.php:280 +#: libraries/Menu.class.php:367 libraries/Menu.class.php:464 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1636 setup/frames/menu.inc.php:21 msgid "Import" msgstr "輸入" @@ -1751,9 +1748,9 @@ msgstr "" msgid "Test" msgstr "測試" -#: js/messages.php:232 pmd_general.php:419 pmd_general.php:456 -#: pmd_general.php:576 pmd_general.php:624 pmd_general.php:700 -#: pmd_general.php:754 pmd_general.php:817 pmd_general.php:848 +#: js/messages.php:232 pmd_general.php:417 pmd_general.php:454 +#: pmd_general.php:574 pmd_general.php:622 pmd_general.php:698 +#: pmd_general.php:752 pmd_general.php:815 pmd_general.php:846 msgid "Cancel" msgstr "取消" @@ -1781,9 +1778,9 @@ msgstr "刪除欄位" msgid "Adding Primary Key" msgstr "正在新增主鍵" -#: js/messages.php:241 pmd_general.php:417 pmd_general.php:574 -#: pmd_general.php:622 pmd_general.php:698 pmd_general.php:752 -#: pmd_general.php:815 +#: js/messages.php:241 pmd_general.php:415 pmd_general.php:572 +#: pmd_general.php:620 pmd_general.php:696 pmd_general.php:750 +#: pmd_general.php:813 msgid "OK" msgstr "確定" @@ -1869,7 +1866,7 @@ msgstr "刪除" msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:732 msgid "ENUM/SET editor" msgstr "" @@ -1914,8 +1911,8 @@ msgstr "顯示查詢框" msgid "No rows selected" msgstr "沒有選中任何行" -#: js/messages.php:286 libraries/DisplayResults.class.php:4267 -#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 +#: js/messages.php:286 libraries/DisplayResults.class.php:4240 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:576 msgid "Change" msgstr "修改" @@ -1932,7 +1929,7 @@ msgid "%d is not valid row number." msgstr "%d 不是有效行數" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1303 +#: libraries/insert_edit.lib.php:1463 #: libraries/schema/User_Schema.class.php:355 #: libraries/tbl_properties.inc.php:882 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 @@ -2448,16 +2445,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:958 +#: libraries/Advisor.class.php:425 server_status.php:957 msgid "per second" msgstr "每秒" -#: libraries/Advisor.class.php:428 server_status.php:953 +#: libraries/Advisor.class.php:428 server_status.php:952 msgid "per minute" msgstr "每分鐘" -#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 -#: server_status.php:1107 server_status.php:1158 +#: libraries/Advisor.class.php:431 server_status.php:948 server_status.php:984 +#: server_status.php:1106 server_status.php:1157 msgid "per hour" msgstr "每小時" @@ -2575,8 +2572,8 @@ msgstr "主鍵排序" #: libraries/import/docsql.php:36 libraries/import/ldi.php:94 #: libraries/import/mediawiki.php:24 libraries/import/ods.php:58 #: libraries/import/shp.php:23 libraries/import/sql.php:20 -#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:867 -#: tbl_structure.php:914 +#: libraries/import/xml.php:32 libraries/rte/rte_routines.lib.php:907 +#: tbl_structure.php:909 msgid "Options" msgstr "選項" @@ -2631,7 +2628,7 @@ msgid "The row has been deleted" msgstr "已刪除該行" #: libraries/DisplayResults.class.php:2636 -#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +#: libraries/DisplayResults.class.php:4215 server_status.php:1282 msgid "Kill" msgstr "中止" @@ -2659,27 +2656,27 @@ msgstr "總計" msgid "Query took %01.4f sec" msgstr "查詢花費 %01.4f 秒" -#: libraries/DisplayResults.class.php:4331 +#: libraries/DisplayResults.class.php:4304 msgid "Query results operations" msgstr "查詢結果選項" -#: libraries/DisplayResults.class.php:4365 +#: libraries/DisplayResults.class.php:4338 msgid "Print view (with full texts)" msgstr "列印預覽 (全文顯示)" -#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#: libraries/DisplayResults.class.php:4400 tbl_chart.php:80 msgid "Display chart" msgstr "顯示圖表" -#: libraries/DisplayResults.class.php:4446 +#: libraries/DisplayResults.class.php:4419 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#: libraries/DisplayResults.class.php:4447 view_create.php:120 msgid "Create view" msgstr "新建視圖" -#: libraries/DisplayResults.class.php:4645 +#: libraries/DisplayResults.class.php:4618 msgid "Link not found" msgstr "找不到連結" @@ -2752,55 +2749,55 @@ msgstr "必須啟用 Cookies 才能登入。" msgid "Javascript must be enabled past this point" msgstr "必須啟用 Cookies 才能登入。" -#: libraries/Index.class.php:430 tbl_relation.php:535 +#: libraries/Index.class.php:431 tbl_relation.php:535 msgid "No index defined!" msgstr "沒有已定義的索引!" -#: libraries/Index.class.php:435 libraries/Index.class.php:445 -#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 +#: libraries/Index.class.php:436 libraries/Index.class.php:449 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:730 #: tbl_tracking.php:361 msgid "Indexes" msgstr "索引" -#: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 +#: libraries/Index.class.php:463 libraries/tbl_properties.inc.php:524 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:589 #: tbl_tracking.php:367 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:460 tbl_tracking.php:368 +#: libraries/Index.class.php:464 tbl_tracking.php:368 msgid "Packed" msgstr "緊湊" -#: libraries/Index.class.php:462 tbl_tracking.php:370 +#: libraries/Index.class.php:466 tbl_tracking.php:370 msgid "Cardinality" msgstr "基數" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 -#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 +#: libraries/Index.class.php:469 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:1001 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "註解" -#: libraries/Index.class.php:491 +#: libraries/Index.class.php:498 msgid "The primary key has been dropped" msgstr "已刪除主鍵" -#: libraries/Index.class.php:495 +#: libraries/Index.class.php:507 #, php-format msgid "Index %s has been dropped" msgstr "已刪除索引 %s" -#: libraries/Index.class.php:598 +#: libraries/Index.class.php:629 #, 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:403 libraries/Menu.class.php:447 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:442 #: libraries/config/messages.inc.php:181 server_databases.php:132 -#: server_privileges.php:2018 +#: server_privileges.php:2013 msgid "Databases" msgstr "資料庫" @@ -2810,7 +2807,7 @@ msgstr "資料庫" msgid "Server" msgstr "伺服器" -#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:252 libraries/Menu.class.php:345 #: libraries/common.lib.php:3307 libraries/common.lib.php:3314 #: libraries/common.lib.php:3516 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 @@ -2823,104 +2820,104 @@ msgstr "伺服器" msgid "Structure" msgstr "結構" -#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 -#: libraries/Menu.class.php:451 libraries/common.lib.php:3308 +#: libraries/Menu.class.php:256 libraries/Menu.class.php:350 +#: libraries/Menu.class.php:446 libraries/common.lib.php:3308 #: libraries/common.lib.php:3315 libraries/config/messages.inc.php:218 #: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:59 msgid "SQL" msgstr "SQL" -#: libraries/Menu.class.php:270 libraries/common.lib.php:3310 +#: libraries/Menu.class.php:265 libraries/common.lib.php:3310 #: libraries/common.lib.php:3514 libraries/common.lib.php:3515 -#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292 +#: libraries/sql_query_form.lib.php:302 libraries/sql_query_form.lib.php:305 msgid "Insert" msgstr "插入" -#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 -#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 +#: libraries/Menu.class.php:284 libraries/Menu.class.php:307 +#: libraries/Menu.class.php:371 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "操作" -#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/Menu.class.php:288 libraries/Menu.class.php:405 #: libraries/relation.lib.php:236 msgid "Tracking" msgstr "追蹤" -#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 +#: libraries/Menu.class.php:297 libraries/Menu.class.php:399 #: libraries/export/htmlword.php:530 libraries/export/odt.php:629 #: libraries/export/sql.php:1321 libraries/export/texytext.php:481 #: libraries/export/xml.php:67 libraries/rte/rte_words.lib.php:41 msgid "Triggers" msgstr "觸發器" -#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 +#: libraries/Menu.class.php:311 libraries/Menu.class.php:312 msgid "Table seems to be empty!" msgstr "資料表是空的!" -#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 -#: libraries/Menu.class.php:346 +#: libraries/Menu.class.php:339 libraries/Menu.class.php:340 +#: libraries/Menu.class.php:341 msgid "Database seems to be empty!" msgstr "資料庫是空的!" -#: libraries/Menu.class.php:362 +#: libraries/Menu.class.php:357 msgid "Query" msgstr "查詢" -#: libraries/Menu.class.php:384 server_privileges.php:182 -#: server_privileges.php:1689 server_privileges.php:2082 -#: server_privileges.php:2430 +#: libraries/Menu.class.php:379 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2077 +#: server_privileges.php:2425 msgid "Privileges" msgstr "權限" -#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:384 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "一般" -#: libraries/Menu.class.php:397 libraries/export/sql.php:780 +#: libraries/Menu.class.php:392 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "事件" -#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 +#: libraries/Menu.class.php:411 libraries/relation.lib.php:203 msgid "Designer" msgstr "設計器" -#: libraries/Menu.class.php:460 +#: libraries/Menu.class.php:455 #, fuzzy #| msgid "User" msgid "Users" msgstr "使用者" -#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: libraries/Menu.class.php:476 server_synchronize.php:1320 #: server_synchronize.php:1327 msgid "Synchronize" msgstr "同步" -#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 +#: libraries/Menu.class.php:481 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "二進制日誌" -#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: libraries/Menu.class.php:492 server_engines.php:94 server_engines.php:98 #: server_status.php:660 msgid "Variables" msgstr "變數" -#: libraries/Menu.class.php:501 +#: libraries/Menu.class.php:496 msgid "Charsets" msgstr "字集" -#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 +#: libraries/Menu.class.php:501 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:510 +#: libraries/Menu.class.php:505 msgid "Engines" msgstr "引擎" #: libraries/Message.class.php:199 libraries/common.lib.php:619 #: libraries/core.lib.php:217 libraries/import.lib.php:154 -#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: libraries/insert_edit.lib.php:1180 tbl_operations.php:231 #: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "錯誤" @@ -2961,75 +2958,75 @@ msgstr "最新資料表" msgid "There are no recent tables" msgstr "沒有最新資料表" -#: libraries/StorageEngine.class.php:207 +#: libraries/StorageEngine.class.php:212 msgid "" "There is no detailed status information available for this storage engine." msgstr "沒有該儲存引擎的詳細狀態資訊" -#: libraries/StorageEngine.class.php:348 +#: libraries/StorageEngine.class.php:353 #, php-format msgid "%s is available on this MySQL server." msgstr "MySQL 伺服器支援 %s" -#: libraries/StorageEngine.class.php:351 +#: libraries/StorageEngine.class.php:356 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s 在此 MySQL 伺服器上被禁止了" -#: libraries/StorageEngine.class.php:355 +#: libraries/StorageEngine.class.php:360 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "此 MySQL 伺服器不支援 %s 儲存引擎" -#: libraries/Table.class.php:366 +#: libraries/Table.class.php:323 #, fuzzy #| msgid "Show slave status" msgid "unknown table status: " msgstr "顯示從伺服器狀態" -#: libraries/Table.class.php:768 +#: libraries/Table.class.php:725 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "來源資料庫" -#: libraries/Table.class.php:776 +#: libraries/Table.class.php:733 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "未找到主題 %s !" -#: libraries/Table.class.php:1193 +#: libraries/Table.class.php:1150 msgid "Invalid database" msgstr "無效的資料庫" -#: libraries/Table.class.php:1207 tbl_get_field.php:27 +#: libraries/Table.class.php:1164 tbl_get_field.php:27 msgid "Invalid table name" msgstr "無效的資料資料表名稱" -#: libraries/Table.class.php:1239 +#: libraries/Table.class.php:1196 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤" -#: libraries/Table.class.php:1258 +#: libraries/Table.class.php:1215 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "已將資料表 %s 改名爲 %s" -#: libraries/Table.class.php:1402 +#: libraries/Table.class.php:1359 msgid "Could not save table UI preferences" msgstr "無法儲存表格介面使用者喜好設定" -#: libraries/Table.class.php:1426 +#: libraries/Table.class.php:1383 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.class.php:1564 +#: libraries/Table.class.php:1521 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -3037,22 +3034,22 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:199 -#: libraries/insert_edit.lib.php:201 libraries/rte/rte_routines.lib.php:1389 +#: libraries/TableSearch.class.php:181 libraries/insert_edit.lib.php:224 +#: libraries/insert_edit.lib.php:230 libraries/rte/rte_routines.lib.php:1435 msgid "Function" msgstr "函數" -#: libraries/TableSearch.class.php:188 pmd_general.php:518 pmd_general.php:538 -#: pmd_general.php:660 pmd_general.php:673 pmd_general.php:736 -#: pmd_general.php:790 +#: libraries/TableSearch.class.php:188 pmd_general.php:516 pmd_general.php:536 +#: pmd_general.php:658 pmd_general.php:671 pmd_general.php:734 +#: pmd_general.php:788 msgid "Operator" msgstr "運算符" #: libraries/TableSearch.class.php:189 libraries/TableSearch.class.php:1171 -#: libraries/insert_edit.lib.php:1399 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1391 pmd_general.php:507 -#: pmd_general.php:566 pmd_general.php:689 pmd_general.php:806 -#: server_status.php:1497 +#: libraries/insert_edit.lib.php:1571 libraries/replication_gui.lib.php:119 +#: libraries/rte/rte_routines.lib.php:1437 pmd_general.php:505 +#: pmd_general.php:564 pmd_general.php:687 pmd_general.php:804 +#: server_status.php:1502 msgid "Value" msgstr "值" @@ -3062,7 +3059,7 @@ msgstr "值" msgid "Table Search" msgstr "搜尋" -#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1359 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" @@ -3200,14 +3197,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3467,8 +3464,8 @@ msgstr "歡迎使用 %s" #: libraries/auth/config.auth.lib.php:98 #, 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 來建立一個設定檔案" @@ -3578,12 +3575,12 @@ msgstr "資料表" #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 #: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 -#: tbl_structure.php:835 +#: tbl_structure.php:830 msgid "Data" msgstr "資料" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:315 tbl_structure.php:852 +#: tbl_printview.php:315 tbl_structure.php:847 msgid "Overhead" msgstr "多餘" @@ -3696,18 +3693,18 @@ msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "zh" -#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1260 #: sql.php:960 msgid "SQL query" msgstr "SQL 查詢" #: libraries/common.lib.php:676 libraries/rte/rte_events.lib.php:103 #: libraries/rte/rte_events.lib.php:108 libraries/rte/rte_events.lib.php:118 -#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:255 -#: libraries/rte/rte_routines.lib.php:260 -#: libraries/rte/rte_routines.lib.php:270 -#: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1269 +#: libraries/rte/rte_events.lib.php:131 libraries/rte/rte_routines.lib.php:284 +#: libraries/rte/rte_routines.lib.php:289 +#: libraries/rte/rte_routines.lib.php:299 +#: libraries/rte/rte_routines.lib.php:316 +#: libraries/rte/rte_routines.lib.php:1315 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -3799,7 +3796,7 @@ msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s" msgid "Click to toggle" msgstr "點擊選取" -#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:465 #: prefs_manage.php:245 msgid "Browse your computer:" msgstr "從計算機中上傳:" @@ -3809,8 +3806,8 @@ msgstr "從計算機中上傳:" msgid "Select from the web server upload directory %s:" msgstr "選擇 Web 伺服器上傳目錄 %s:" -#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 -#: libraries/sql_query_form.lib.php:451 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1181 +#: libraries/sql_query_form.lib.php:474 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上傳目錄錯誤,無法使用" @@ -3994,7 +3991,7 @@ msgstr "還原預設值" msgid "Allow users to customize this value" msgstr "允許使用者自訂該值" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1544 #: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 #: prefs_manage.php:328 msgid "Reset" @@ -4275,7 +4272,7 @@ msgid "Character set of the file" msgstr "檔案字集" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:893 msgid "Format" msgstr "格式" @@ -4573,7 +4570,7 @@ msgstr "導覽框架" msgid "Customize appearance of the navigation frame" msgstr "自訂導覽框架" -#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:38 +#: libraries/config/messages.inc.php:185 libraries/select_server.lib.php:40 #: setup/frames/index.inc.php:117 msgid "Servers" msgstr "伺服器" @@ -5851,7 +5848,7 @@ msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358 +#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:372 #, fuzzy #| msgid "Hide query box" msgid "Retain query box" @@ -6174,7 +6171,7 @@ msgstr "缺少 %s 外掛。請檢查 PHP 設定" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:1936 +#: libraries/database_interface.lib.php:1939 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6182,17 +6179,17 @@ msgid "" "configured)." msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)" -#: libraries/database_interface.lib.php:1939 +#: libraries/database_interface.lib.php:1942 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "伺服器沒有響應" -#: libraries/database_interface.lib.php:1944 +#: libraries/database_interface.lib.php:1947 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:1953 +#: libraries/database_interface.lib.php:1956 msgid "Details..." msgstr "詳細..." @@ -6249,8 +6246,8 @@ msgstr "建立資料表" #: libraries/display_create_table.lib.php:51 libraries/export/htmlword.php:448 #: libraries/export/odt.php:531 libraries/export/texytext.php:407 #: libraries/rte/rte_list.lib.php:52 libraries/rte/rte_list.lib.php:63 -#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:864 -#: libraries/rte/rte_routines.lib.php:1386 libraries/tbl_properties.inc.php:84 +#: libraries/rte/rte_list.lib.php:77 libraries/rte/rte_routines.lib.php:904 +#: libraries/rte/rte_routines.lib.php:1432 libraries/tbl_properties.inc.php:84 #: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "名字" @@ -6350,8 +6347,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 來解析的,所以您能用時間格式的字元串。另外,下" "列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s" @@ -6361,7 +6358,7 @@ msgid "use this for future exports" msgstr "以後也使用此設定" #: libraries/display_export.lib.php:291 libraries/display_import.lib.php:239 -#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:467 +#: libraries/display_import.lib.php:253 libraries/sql_query_form.lib.php:490 msgid "Character set of the file:" msgstr "檔案的字集:" @@ -6847,8 +6844,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:131 #, 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 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s" #: libraries/engines/pbxt.lib.php:133 @@ -6908,7 +6905,7 @@ msgstr "事件" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 #: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:967 #: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" @@ -6971,7 +6968,7 @@ msgstr "顯示 MIME 類型" #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 #: server_privileges.php:917 server_privileges.php:920 #: server_privileges.php:976 server_privileges.php:1862 -#: server_privileges.php:2428 server_status.php:1255 sql.php:956 +#: server_privileges.php:2423 server_status.php:1254 sql.php:956 msgid "Host" msgstr "主機" @@ -7190,8 +7187,8 @@ msgstr "匯出內容" msgid "No data found for GIS visualization." msgstr "未找到圖表所需資料" -#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 +#: libraries/import.lib.php:170 libraries/insert_edit.lib.php:144 +#: libraries/rte/rte_routines.lib.php:1304 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)" @@ -7369,75 +7366,75 @@ msgstr "SQL 相容模式:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要給零值使用自動新增 (AUTO_INCREMENT)" -#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: libraries/insert_edit.lib.php:229 libraries/insert_edit.lib.php:260 #: pmd_general.php:174 msgid "Hide" msgstr "隱藏" -#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:473 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "二進制" -#: libraries/insert_edit.lib.php:592 +#: libraries/insert_edit.lib.php:665 msgid "Because of its length,
    this column might not be editable" msgstr "因長度問題,
    該欄位可能無法編輯" -#: libraries/insert_edit.lib.php:968 +#: libraries/insert_edit.lib.php:1092 msgid "Binary - do not edit" msgstr "二進制 - 無法編輯" -#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1185 libraries/sql_query_form.lib.php:477 msgid "web server upload directory" msgstr "網站伺服器上傳資料夾" -#: libraries/insert_edit.lib.php:1249 +#: libraries/insert_edit.lib.php:1403 #, php-format msgid "Continue insertion with %s rows" msgstr "繼續插入 %s 行" -#: libraries/insert_edit.lib.php:1276 +#: libraries/insert_edit.lib.php:1433 msgid "and then" msgstr "然後" -#: libraries/insert_edit.lib.php:1305 +#: libraries/insert_edit.lib.php:1466 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1469 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略錯誤)" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1472 msgid "Show insert query" msgstr "顯示插入指令" -#: libraries/insert_edit.lib.php:1326 +#: libraries/insert_edit.lib.php:1492 msgid "Go back to previous page" msgstr "返回上一頁" -#: libraries/insert_edit.lib.php:1328 +#: libraries/insert_edit.lib.php:1495 msgid "Insert another new row" msgstr "插入新資料" -#: libraries/insert_edit.lib.php:1332 +#: libraries/insert_edit.lib.php:1500 msgid "Go back to this page" msgstr "返回到本頁" -#: libraries/insert_edit.lib.php:1347 +#: libraries/insert_edit.lib.php:1519 msgid "Edit next row" msgstr "編輯下一行" -#: libraries/insert_edit.lib.php:1367 +#: libraries/insert_edit.lib.php:1539 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" -#: libraries/insert_edit.lib.php:1685 sql.php:824 +#: libraries/insert_edit.lib.php:1894 sql.php:824 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:1710 sql.php:804 +#: libraries/insert_edit.lib.php:1919 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7463,7 +7460,7 @@ msgid "To" msgstr "" #: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 -#: libraries/sql_query_form.lib.php:402 +#: libraries/sql_query_form.lib.php:418 msgid "Submit" msgstr "送出" @@ -7481,7 +7478,7 @@ msgstr "" msgid "Do you really want to execute the following query?" msgstr "您真的要" -#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:240 msgid "No change" msgstr "無更改" @@ -7733,7 +7730,7 @@ msgid "" "Please see the documentation on how to update your column_comments table" msgstr "請參見檔案中關於如何更新您的 column_comments 表" -#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:398 msgid "Bookmarked SQL query" msgstr "SQL 查詢書籤" @@ -7782,6 +7779,10 @@ msgstr "請重新登錄 phpMyAdmin 以載入新設定並使其生效" msgid "no description" msgstr "無說明" +#: libraries/replication_gui.lib.php:35 server_privileges.php:787 +msgid "Uncheck All" +msgstr "全不選" + #: libraries/replication_gui.lib.php:54 msgid "Slave configuration" msgstr "從伺服器設定" @@ -7818,8 +7819,8 @@ msgstr "主伺服器狀態" msgid "Slave status" msgstr "從伺服器狀態" -#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1496 server_variables.php:123 +#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:410 +#: server_status.php:1501 server_variables.php:123 msgid "Variable" msgstr "變數" @@ -7844,7 +7845,7 @@ msgstr "任意使用者" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:900 #: server_privileges.php:970 server_privileges.php:994 -#: server_privileges.php:2293 server_privileges.php:2323 +#: server_privileges.php:2288 server_privileges.php:2318 msgid "Use text field" msgstr "使用文字域" @@ -7875,10 +7876,10 @@ msgid "Generate Password" msgstr "產生密碼" #: libraries/rte/rte_events.lib.php:102 libraries/rte/rte_events.lib.php:107 -#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 -#: libraries/rte/rte_routines.lib.php:259 -#: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1265 +#: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:283 +#: libraries/rte/rte_routines.lib.php:288 +#: libraries/rte/rte_routines.lib.php:313 +#: libraries/rte/rte_routines.lib.php:1311 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7890,7 +7891,7 @@ msgstr "下列查詢被執行:" msgid "Sorry, we failed to restore the dropped event." msgstr "" -#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:269 +#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:298 #: libraries/rte/rte_triggers.lib.php:90 msgid "The backed up query was:" msgstr "" @@ -7907,7 +7908,7 @@ msgstr "已刪除欄位 %s " msgid "Event %1$s has been created." msgstr "建立資料表 %1$s 成功" -#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294 +#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:329 #: libraries/rte/rte_triggers.lib.php:114 msgid "One or more errors have occured while processing your request:" msgstr "" @@ -7918,16 +7919,16 @@ msgstr "" msgid "Edit event" msgstr "編輯伺服器" -#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:373 -#: libraries/rte/rte_routines.lib.php:1290 -#: libraries/rte/rte_routines.lib.php:1328 +#: libraries/rte/rte_events.lib.php:213 libraries/rte/rte_routines.lib.php:409 +#: libraries/rte/rte_routines.lib.php:1336 +#: libraries/rte/rte_routines.lib.php:1374 #: libraries/rte/rte_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "要求處理得程序中有錯誤" -#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:872 #: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." @@ -7944,7 +7945,7 @@ msgstr "事件類型" msgid "Event type" msgstr "事件類型" -#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:893 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7978,13 +7979,13 @@ msgstr "結束" msgid "On completion preserve" msgstr "完整插入" -#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:977 #: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" #: libraries/rte/rte_events.lib.php:522 -#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_routines.lib.php:1042 #: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -8009,7 +8010,7 @@ msgstr "" msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2581 msgid "New" msgstr "" @@ -8031,7 +8032,7 @@ msgstr "" msgid "Returns" msgstr "返回類型" -#: libraries/rte/rte_routines.lib.php:65 +#: libraries/rte/rte_routines.lib.php:69 msgid "" "You are using PHP's deprecated 'mysql' extension, which is not capable of " "handling multi queries. [strong]The execution of some stored routines may " @@ -8039,142 +8040,142 @@ msgid "" "problems." msgstr "" -#: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1009 +#: libraries/rte/rte_routines.lib.php:276 +#: libraries/rte/rte_routines.lib.php:1051 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" msgstr "無效的伺服器索引: %s" -#: libraries/rte/rte_routines.lib.php:268 +#: libraries/rte/rte_routines.lib.php:297 msgid "Sorry, we failed to restore the dropped routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:273 +#: libraries/rte/rte_routines.lib.php:302 #, fuzzy, php-format #| msgid "Column %s has been dropped" msgid "Routine %1$s has been modified." msgstr "已刪除欄位 %s " -#: libraries/rte/rte_routines.lib.php:286 +#: libraries/rte/rte_routines.lib.php:319 #, fuzzy, php-format #| msgid "Table %1$s has been created." msgid "Routine %1$s has been created." msgstr "建立資料表 %1$s 成功" -#: libraries/rte/rte_routines.lib.php:347 +#: libraries/rte/rte_routines.lib.php:383 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "編輯模式" -#: libraries/rte/rte_routines.lib.php:835 +#: libraries/rte/rte_routines.lib.php:875 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "一般" -#: libraries/rte/rte_routines.lib.php:858 +#: libraries/rte/rte_routines.lib.php:898 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 +#: libraries/rte/rte_routines.lib.php:903 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "直接連線" -#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:906 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "長度/值" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:921 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:885 +#: libraries/rte/rte_routines.lib.php:925 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "刪除資料庫" -#: libraries/rte/rte_routines.lib.php:890 +#: libraries/rte/rte_routines.lib.php:930 msgid "Return type" msgstr "返回類型" -#: libraries/rte/rte_routines.lib.php:896 +#: libraries/rte/rte_routines.lib.php:936 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "長度/值" -#: libraries/rte/rte_routines.lib.php:902 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "表選項" -#: libraries/rte/rte_routines.lib.php:933 +#: libraries/rte/rte_routines.lib.php:973 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:942 +#: libraries/rte/rte_routines.lib.php:982 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "安全" -#: libraries/rte/rte_routines.lib.php:949 +#: libraries/rte/rte_routines.lib.php:989 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1014 +#: libraries/rte/rte_routines.lib.php:1058 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1040 +#: libraries/rte/rte_routines.lib.php:1084 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1054 -#: libraries/rte/rte_routines.lib.php:1094 +#: libraries/rte/rte_routines.lib.php:1098 +#: libraries/rte/rte_routines.lib.php:1138 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1072 +#: libraries/rte/rte_routines.lib.php:1116 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1082 +#: libraries/rte/rte_routines.lib.php:1126 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1128 +#: libraries/rte/rte_routines.lib.php:1172 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1219 +#: libraries/rte/rte_routines.lib.php:1265 #, 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] "" -#: libraries/rte/rte_routines.lib.php:1235 +#: libraries/rte/rte_routines.lib.php:1281 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "允許運行 Procedure" -#: libraries/rte/rte_routines.lib.php:1315 -#: libraries/rte/rte_routines.lib.php:1323 +#: libraries/rte/rte_routines.lib.php:1361 +#: libraries/rte/rte_routines.lib.php:1369 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/rte/rte_routines.lib.php:1382 +#: libraries/rte/rte_routines.lib.php:1425 +#: libraries/rte/rte_routines.lib.php:1428 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8497,7 +8498,7 @@ msgstr "ltr" msgid "Unknown language: %1$s." msgstr "未知的語言:%1$s." -#: libraries/select_server.lib.php:35 libraries/select_server.lib.php:40 +#: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 msgid "Current Server" msgstr "目前伺服器" @@ -8528,50 +8529,50 @@ msgstr "目標資料庫" msgid "Click to select" msgstr "點擊選取" -#: libraries/sql_query_form.lib.php:192 +#: libraries/sql_query_form.lib.php:198 #, php-format msgid "Run SQL query/queries on server %s" msgstr "在伺服器 %s 運行 SQL 查詢" -#: libraries/sql_query_form.lib.php:213 libraries/sql_query_form.lib.php:235 +#: libraries/sql_query_form.lib.php:219 libraries/sql_query_form.lib.php:244 #, php-format msgid "Run SQL query/queries on database %s" msgstr "在資料庫 %s 運行 SQL 查詢" -#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 +#: libraries/sql_query_form.lib.php:280 navigation.php:170 navigation.php:239 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "清除" -#: libraries/sql_query_form.lib.php:272 +#: libraries/sql_query_form.lib.php:285 msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 +#: libraries/sql_query_form.lib.php:320 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "將此 SQL 查詢加爲書籤" -#: libraries/sql_query_form.lib.php:313 sql.php:1120 +#: libraries/sql_query_form.lib.php:326 sql.php:1120 msgid "Let every user access this bookmark" msgstr "讓所有使用者均可訪問此書籤" -#: libraries/sql_query_form.lib.php:319 +#: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "替換現有的同名書籤" -#: libraries/sql_query_form.lib.php:335 +#: libraries/sql_query_form.lib.php:348 msgid "Do not overwrite this query from outside the window" msgstr "不從視窗外覆蓋此查詢" -#: libraries/sql_query_form.lib.php:342 +#: libraries/sql_query_form.lib.php:355 msgid "Delimiter" msgstr "指令定界符" -#: libraries/sql_query_form.lib.php:350 +#: libraries/sql_query_form.lib.php:363 msgid "Show this query here again" msgstr "在此再次顯示此查詢" -#: libraries/sql_query_form.lib.php:406 +#: libraries/sql_query_form.lib.php:422 msgid "View only" msgstr "僅查看" @@ -8666,7 +8667,7 @@ msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號, #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 #: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 -#: tbl_structure.php:598 tbl_structure.php:843 +#: tbl_structure.php:593 tbl_structure.php:838 msgid "Index" msgstr "索引" @@ -8715,12 +8716,12 @@ msgid "As defined:" msgstr "定義:" #: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 -#: tbl_structure.php:155 tbl_structure.php:590 +#: tbl_structure.php:155 tbl_structure.php:585 msgid "Primary" msgstr "主鍵" #: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 -#: tbl_structure.php:159 tbl_structure.php:615 +#: tbl_structure.php:159 tbl_structure.php:610 msgid "Fulltext" msgstr "全文搜尋" @@ -8734,12 +8735,12 @@ msgstr "" msgid "after %s" msgstr "於 %s 之後" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:694 #, php-format msgid "Add %s column(s)" msgstr "增加 %s 個字段" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:688 msgid "You have to add at least one column." msgstr "至少要增加一個字段。" @@ -8788,7 +8789,7 @@ msgstr "顯示可點選的縮圖。在原比例不變的情況下,可按像素 msgid "Displays a link to download this image." msgstr "顯示下載此圖片的連結" -#: libraries/transformations/text_plain__append.inc.php:14 +#: libraries/transformations/text_plain__append.inc.php:15 msgid "" "Appends text to a string. The only option is the text to be appended " "(enclosed in single quotes, default empty string)." @@ -8952,8 +8953,8 @@ msgid "Protocol version" msgstr "協定版本" #: main.php:188 server_privileges.php:1703 server_privileges.php:1861 -#: server_privileges.php:2008 server_privileges.php:2427 -#: server_status.php:1254 +#: server_privileges.php:2003 server_privileges.php:2422 +#: server_status.php:1253 msgid "User" msgstr "使用者" @@ -9083,17 +9084,17 @@ msgid "" "issues." msgstr "伺服器上運行了 Suhosin。請先查看%s檔案%s中是否有類似的情況" -#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 +#: navigation.php:134 server_databases.php:313 server_synchronize.php:1468 msgid "No databases" msgstr "無資料庫" -#: navigation.php:170 +#: navigation.php:169 #, fuzzy #| msgid "filter tables by name" msgid "Filter databases by name" msgstr "請輸入部分或完整的表名" -#: navigation.php:239 +#: navigation.php:238 #, fuzzy #| msgid "filter tables by name" msgid "Filter tables by name" @@ -9116,7 +9117,7 @@ msgstr "顯示/隱藏左側選單" msgid "Save position" msgstr "儲存位置" -#: pmd_general.php:94 pmd_general.php:383 +#: pmd_general.php:94 pmd_general.php:381 msgid "Create relation" msgstr "建立關聯" @@ -9178,37 +9179,37 @@ msgstr "隱藏/顯示沒有關聯的表" msgid "Number of tables" msgstr "資料表數量" -#: pmd_general.php:449 +#: pmd_general.php:447 msgid "Delete relation" msgstr "刪除關聯" -#: pmd_general.php:491 pmd_general.php:550 +#: pmd_general.php:489 pmd_general.php:548 msgid "Relation operator" msgstr "關聯運算符" -#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 -#: pmd_general.php:800 +#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 +#: pmd_general.php:798 msgid "Except" msgstr "例外" -#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 -#: pmd_general.php:806 +#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 +#: pmd_general.php:804 msgid "subquery" msgstr "子查詢" -#: pmd_general.php:511 pmd_general.php:607 +#: pmd_general.php:509 pmd_general.php:605 msgid "Rename to" msgstr "改名爲" -#: pmd_general.php:513 pmd_general.php:612 +#: pmd_general.php:511 pmd_general.php:610 msgid "New name" msgstr "新名稱" -#: pmd_general.php:516 pmd_general.php:731 +#: pmd_general.php:514 pmd_general.php:729 msgid "Aggregate" msgstr "聚合" -#: pmd_general.php:841 +#: pmd_general.php:839 msgid "Active options" msgstr "目前選項" @@ -9368,13 +9369,13 @@ msgstr "選擇要查看的二進制日誌" msgid "Files" msgstr "檔案" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1264 +#: server_status.php:1266 msgid "Truncate Shown Queries" msgstr "截斷顯示的查詢" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 -#: server_status.php:1267 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1264 +#: server_status.php:1266 msgid "Show Full Queries" msgstr "顯示完整查詢" @@ -9390,7 +9391,7 @@ msgstr "位置" msgid "Original position" msgstr "原始位置" -#: server_binlog.php:180 tbl_structure.php:828 +#: server_binlog.php:180 tbl_structure.php:823 msgid "Information" msgstr "資訊" @@ -9418,11 +9419,11 @@ msgstr "主複製" msgid "Slave replication" msgstr "從複製" -#: server_databases.php:306 server_databases.php:307 +#: server_databases.php:304 server_databases.php:305 msgid "Enable Statistics" msgstr "啓用統計" -#: server_databases.php:309 +#: server_databases.php:307 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9665,7 +9666,7 @@ msgid "None" msgstr "無" #: server_privileges.php:636 server_privileges.php:781 -#: server_privileges.php:2078 server_privileges.php:2084 +#: server_privileges.php:2073 server_privileges.php:2079 msgid "Table-specific privileges" msgstr "按表指定權限" @@ -9682,7 +9683,7 @@ msgstr "管理" msgid "Global privileges" msgstr "全域權限" -#: server_privileges.php:780 server_privileges.php:2078 +#: server_privileges.php:780 server_privileges.php:2073 msgid "Database-specific privileges" msgstr "按資料庫指定權限" @@ -9702,7 +9703,7 @@ msgstr "登錄資訊" msgid "Do not change the password" msgstr "保持原密碼" -#: server_privileges.php:1040 server_privileges.php:2570 +#: server_privileges.php:1040 server_privileges.php:2565 msgid "No user found." msgstr "未找到使用者" @@ -9751,7 +9752,7 @@ msgstr "已成功刪除選中的使用者" msgid "The privileges were reloaded successfully." msgstr "已成功重新載入權限" -#: server_privileges.php:1551 server_privileges.php:2007 +#: server_privileges.php:1551 server_privileges.php:2002 msgid "Edit Privileges" msgstr "編輯權限" @@ -9766,7 +9767,7 @@ msgid "Export all" msgstr "匯出" #: server_privileges.php:1595 server_privileges.php:1888 -#: server_privileges.php:2520 +#: server_privileges.php:2515 msgid "Any" msgstr "任意" @@ -9788,118 +9789,118 @@ msgstr "權限" msgid "Users overview" msgstr "查看使用者" -#: server_privileges.php:1866 server_privileges.php:2083 -#: server_privileges.php:2431 +#: server_privileges.php:1866 server_privileges.php:2078 +#: server_privileges.php:2426 msgid "Grant" msgstr "授權" -#: server_privileges.php:1962 +#: server_privileges.php:1957 msgid "Remove selected users" msgstr "刪除選中的使用者" -#: server_privileges.php:1965 +#: server_privileges.php:1960 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "移除使用者所有權限,然後刪除使用者" -#: server_privileges.php:1966 server_privileges.php:1967 -#: server_privileges.php:1968 +#: server_privileges.php:1961 server_privileges.php:1962 +#: server_privileges.php:1963 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者同名的資料庫" -#: server_privileges.php:1989 +#: server_privileges.php:1984 #, php-format 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" -#: server_privileges.php:2042 +#: server_privileges.php:2037 msgid "The selected user was not found in the privilege table." msgstr "在權限表內找不到選中的使用者" -#: server_privileges.php:2084 +#: server_privileges.php:2079 msgid "Column-specific privileges" msgstr "按欄位指定權限" -#: server_privileges.php:2290 +#: server_privileges.php:2285 msgid "Add privileges on the following database" msgstr "在下列資料庫新增權限" -#: server_privileges.php:2308 +#: server_privileges.php:2303 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義" -#: server_privileges.php:2311 +#: server_privileges.php:2306 msgid "Add privileges on the following table" msgstr "在下列資料表新增權限" -#: server_privileges.php:2368 +#: server_privileges.php:2363 msgid "Change Login Information / Copy User" msgstr "修改登錄資訊/複製使用者" -#: server_privileges.php:2371 +#: server_privileges.php:2366 msgid "Create a new user with the same privileges and ..." msgstr "建立具有相同權限的新使用者然後 ..." -#: server_privileges.php:2373 +#: server_privileges.php:2368 msgid "... keep the old one." msgstr "... 保留舊使用者" -#: server_privileges.php:2374 +#: server_privileges.php:2369 msgid "... delete the old one from the user tables." msgstr "... 從使用者資料表中刪除舊使用者" -#: server_privileges.php:2375 +#: server_privileges.php:2370 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... 移除舊使用者的所有權限,然後刪除舊使用者" -#: server_privileges.php:2376 +#: server_privileges.php:2371 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... 從使用者資料表中刪除舊使用者,然後重新載入權限" -#: server_privileges.php:2399 +#: server_privileges.php:2394 msgid "Database for user" msgstr "使用者資料庫" -#: server_privileges.php:2401 +#: server_privileges.php:2396 msgid "Create database with same name and grant all privileges" msgstr "建立與使用者同名的資料庫並授予所有權限" -#: server_privileges.php:2403 +#: server_privileges.php:2398 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限" -#: server_privileges.php:2407 +#: server_privileges.php:2402 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予資料庫“%s”的所有權限" -#: server_privileges.php:2423 +#: server_privileges.php:2418 #, php-format msgid "Users having access to "%s"" msgstr "使用者可以訪問“%s”" -#: server_privileges.php:2532 +#: server_privileges.php:2527 msgid "global" msgstr "全域" -#: server_privileges.php:2534 +#: server_privileges.php:2529 msgid "database-specific" msgstr "按資料庫指定" -#: server_privileges.php:2536 +#: server_privileges.php:2531 msgid "wildcard" msgstr "萬用字元" -#: server_privileges.php:2578 +#: server_privileges.php:2573 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10186,50 +10187,50 @@ msgstr "顯示開啟的表" msgid "Filter by category..." msgstr "" -#: server_status.php:870 +#: server_status.php:869 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "顯示開啟的表" -#: server_status.php:874 +#: server_status.php:873 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "相關連結" -#: server_status.php:907 +#: server_status.php:906 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "查詢方式" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy msgid "Instructions" msgstr "資料" -#: server_status.php:915 +#: server_status.php:914 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:917 +#: server_status.php:916 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:919 +#: server_status.php:918 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:921 +#: server_status.php:920 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10237,47 +10238,47 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:943 +#: server_status.php:942 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "自訂起始頁" -#: server_status.php:979 +#: server_status.php:978 msgid "Statements" msgstr "說明" #. l10n: # = Amount of queries -#: server_status.php:982 +#: server_status.php:981 msgid "#" msgstr "" -#: server_status.php:1055 +#: server_status.php:1054 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1064 +#: server_status.php:1063 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" -#: server_status.php:1075 +#: server_status.php:1074 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1077 +#: server_status.php:1076 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1079 +#: server_status.php:1078 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1082 +#: server_status.php:1081 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10285,11 +10286,11 @@ msgstr "" "要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" "" -#: server_status.php:1091 +#: server_status.php:1090 msgid "Replication status" msgstr "複製狀態" -#: server_status.php:1106 +#: server_status.php:1105 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10297,47 +10298,47 @@ msgstr "" "在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" "確" -#: server_status.php:1112 +#: server_status.php:1111 msgid "Received" msgstr "已接收" -#: server_status.php:1123 +#: server_status.php:1122 msgid "Sent" msgstr "已發送" -#: server_status.php:1164 +#: server_status.php:1163 msgid "max. concurrent connections" msgstr "最大同時連線數" -#: server_status.php:1171 +#: server_status.php:1170 msgid "Failed attempts" msgstr "已失敗" -#: server_status.php:1187 +#: server_status.php:1186 msgid "Aborted" msgstr "已取消" -#: server_status.php:1253 +#: server_status.php:1252 msgid "ID" msgstr "ID" -#: server_status.php:1257 +#: server_status.php:1256 msgid "Command" msgstr "命令" -#: server_status.php:1319 +#: server_status.php:1320 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1320 +#: server_status.php:1321 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "無法連線到 MySQL 伺服器" -#: server_status.php:1321 +#: server_status.php:1322 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10346,16 +10347,16 @@ msgstr "" "因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存" "的數量" -#: server_status.php:1322 +#: server_status.php:1323 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易所用的臨時二進制日誌快取的數量" -#: server_status.php:1323 +#: server_status.php:1324 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1324 +#: server_status.php:1325 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10365,46 +10366,46 @@ msgstr "" "伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables " "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟" -#: server_status.php:1325 +#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的臨時檔案的數量" -#: server_status.php:1326 +#: server_status.php:1327 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量" -#: server_status.php:1327 +#: server_status.php:1328 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值)" -#: server_status.php:1328 +#: server_status.php:1329 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延遲插入處理程序的數量。每張使用延遲插入的表都有自己的程序" -#: server_status.php:1329 +#: server_status.php:1330 msgid "The number of INSERT DELAYED rows written." msgstr "延遲插入已寫入的行數" -#: server_status.php:1330 +#: server_status.php:1331 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數" -#: server_status.php:1331 +#: server_status.php:1332 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數" -#: server_status.php:1332 +#: server_status.php:1333 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數" -#: server_status.php:1333 +#: server_status.php:1334 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10413,7 +10414,7 @@ msgstr "" "如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發" "現”Handler_discovery 表明瞭一個資料表被發現的次數" -#: server_status.php:1334 +#: server_status.php:1335 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10422,14 +10423,14 @@ msgstr "" "讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃" "描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo" -#: server_status.php:1335 +#: server_status.php:1336 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根據索引讀取行的請求數。如果該值很大,說明您的查詢和表都建立了很好的索引" -#: server_status.php:1336 +#: server_status.php:1337 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10438,7 +10439,7 @@ msgstr "" "根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或" "進行完整表掃描,該值將會不斷增長" -#: server_status.php:1337 +#: server_status.php:1338 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10446,7 +10447,7 @@ msgstr "" "根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... " "DESC 的查詢" -#: server_status.php:1338 +#: server_status.php:1339 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10456,7 +10457,7 @@ msgstr "" "根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能" "有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢" -#: server_status.php:1339 +#: server_status.php:1340 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10466,35 +10467,35 @@ msgstr "" "從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味" "着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位" -#: server_status.php:1340 +#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "內部回滾 (ROLLBACK) 指令數" -#: server_status.php:1341 +#: server_status.php:1342 msgid "The number of requests to update a row in a table." msgstr "資料表中更新行的請求數" -#: server_status.php:1342 +#: server_status.php:1343 msgid "The number of requests to insert a row in a table." msgstr "資料表中插入行的請求數" -#: server_status.php:1343 +#: server_status.php:1344 msgid "The number of pages containing data (dirty or clean)." msgstr "非空頁數 (含髒頁)" -#: server_status.php:1344 +#: server_status.php:1345 msgid "The number of pages currently dirty." msgstr "目前髒頁數" -#: server_status.php:1345 +#: server_status.php:1346 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數" -#: server_status.php:1346 +#: server_status.php:1347 msgid "The number of free pages." msgstr "空閒頁數" -#: server_status.php:1347 +#: server_status.php:1348 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10503,7 +10504,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的" -#: server_status.php:1348 +#: server_status.php:1349 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10514,11 +10515,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data" -#: server_status.php:1349 +#: server_status.php:1350 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位:頁)" -#: server_status.php:1350 +#: server_status.php:1351 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10526,23 +10527,23 @@ msgstr "" "InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生" -#: server_status.php:1351 +#: server_status.php:1352 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "InnoDB 原始化的順序預讀數。這會在 InnoDB 執行一個順序完整表掃描時發生" -#: server_status.php:1352 +#: server_status.php:1353 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數" -#: server_status.php:1353 +#: server_status.php:1354 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 進行邏輯讀取時無法從快取池中取得而執行單頁讀取的次數" -#: server_status.php:1354 +#: server_status.php:1355 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10554,85 +10555,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小" -#: server_status.php:1355 +#: server_status.php:1356 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數" -#: server_status.php:1356 +#: server_status.php:1357 msgid "The number of fsync() operations so far." msgstr "fsync() 總操作的次數" -#: server_status.php:1357 +#: server_status.php:1358 msgid "The current number of pending fsync() operations." msgstr "目前掛起 fsync() 操作的數量" -#: server_status.php:1358 +#: server_status.php:1359 msgid "The current number of pending reads." msgstr "目前掛起的讀操作數" -#: server_status.php:1359 +#: server_status.php:1360 msgid "The current number of pending writes." msgstr "目前掛起的寫操作數" -#: server_status.php:1360 +#: server_status.php:1361 msgid "The amount of data read so far, in bytes." msgstr "讀取的總資料量 (單位:字元)" -#: server_status.php:1361 +#: server_status.php:1362 msgid "The total number of data reads." msgstr "資料讀取總數" -#: server_status.php:1362 +#: server_status.php:1363 msgid "The total number of data writes." msgstr "資料寫入總數" -#: server_status.php:1363 +#: server_status.php:1364 msgid "The amount of data written so far, in bytes." msgstr "寫入的總資料量 (單位:字元)" -#: server_status.php:1364 +#: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." msgstr "以雙寫入操作寫入的頁數" -#: server_status.php:1365 +#: server_status.php:1366 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數" -#: server_status.php:1366 +#: server_status.php:1367 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日誌快取太小而必須等待其被寫入所造成的等待數" -#: server_status.php:1367 +#: server_status.php:1368 msgid "The number of log write requests." msgstr "日誌寫入請求數" -#: server_status.php:1368 +#: server_status.php:1369 msgid "The number of physical writes to the log file." msgstr "日誌物理寫入次數" -#: server_status.php:1369 +#: server_status.php:1370 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入日志檔案的次數" -#: server_status.php:1370 +#: server_status.php:1371 msgid "The number of pending log file fsyncs." msgstr "目前掛起的 fsync 日志檔案數" -#: server_status.php:1371 +#: server_status.php:1372 msgid "Pending log file writes." msgstr "目前掛起的日誌寫入數" -#: server_status.php:1372 +#: server_status.php:1373 msgid "The number of bytes written to the log file." msgstr "寫入日志檔案的字元數" -#: server_status.php:1373 +#: server_status.php:1374 msgid "The number of pages created." msgstr "建立的頁數" -#: server_status.php:1374 +#: server_status.php:1375 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10640,81 +10641,81 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數" -#: server_status.php:1375 +#: server_status.php:1376 msgid "The number of pages read." msgstr "讀取的頁數" -#: server_status.php:1376 +#: server_status.php:1377 msgid "The number of pages written." msgstr "寫入的頁數" -#: server_status.php:1377 +#: server_status.php:1378 msgid "The number of row locks currently being waited for." msgstr "正在等待行鎖的數量" -#: server_status.php:1378 +#: server_status.php:1379 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的平均時間 (單位:毫秒)" -#: server_status.php:1379 +#: server_status.php:1380 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得行鎖的總時間 (單位:毫秒)" -#: server_status.php:1380 +#: server_status.php:1381 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的最大時間 (單位:毫秒)" -#: server_status.php:1381 +#: server_status.php:1382 msgid "The number of times a row lock had to be waited for." msgstr "等待行鎖的次數" -#: server_status.php:1382 +#: server_status.php:1383 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的行數" -#: server_status.php:1383 +#: server_status.php:1384 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 資料表中的行數" -#: server_status.php:1384 +#: server_status.php:1385 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的行數" -#: server_status.php:1385 +#: server_status.php:1386 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行數" -#: server_status.php:1386 +#: server_status.php:1387 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks" -#: server_status.php:1387 +#: server_status.php:1388 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "鍵快取中未使用的塊數。您可以根據這個值判斷目前使用了多少鍵快取" -#: server_status.php:1388 +#: server_status.php:1389 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量" -#: server_status.php:1389 +#: server_status.php:1390 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "匯入檔案的格式" -#: server_status.php:1390 +#: server_status.php:1391 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數" -#: server_status.php:1391 +#: server_status.php:1392 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10723,26 +10724,26 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出" -#: server_status.php:1392 +#: server_status.php:1393 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1393 +#: server_status.php:1394 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數" -#: server_status.php:1394 +#: server_status.php:1395 msgid "The number of physical writes of a key block to disk." msgstr "將鍵塊物理寫入到硬碟的次數" -#: server_status.php:1395 +#: server_status.php:1396 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1396 +#: server_status.php:1397 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10751,54 +10752,54 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯" -#: server_status.php:1397 +#: server_status.php:1398 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1398 +#: server_status.php:1399 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待寫入延遲插入隊列的行數" -#: server_status.php:1399 +#: server_status.php:1400 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已經開啟的表個數。如果該值很大,則說明表快取大小可能設定過小" -#: server_status.php:1400 +#: server_status.php:1401 msgid "The number of files that are open." msgstr "開啟的檔案個數" -#: server_status.php:1401 +#: server_status.php:1402 msgid "The number of streams that are open (used mainly for logging)." msgstr "開啟的流個數 (主要用於日誌記錄)" -#: server_status.php:1402 +#: server_status.php:1403 msgid "The number of tables that are open." msgstr "開啟的資料表個數" -#: server_status.php:1403 +#: server_status.php:1404 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1404 +#: server_status.php:1405 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數" -#: server_status.php:1405 +#: server_status.php:1406 msgid "The number of cache hits." msgstr "快取命中數" -#: server_status.php:1406 +#: server_status.php:1407 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數" -#: server_status.php:1407 +#: server_status.php:1408 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10808,7 +10809,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小" -#: server_status.php:1408 +#: server_status.php:1409 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10816,19 +10817,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)" -#: server_status.php:1409 +#: server_status.php:1410 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數" -#: server_status.php:1410 +#: server_status.php:1411 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總塊數" -#: server_status.php:1411 +#: server_status.php:1412 msgid "The status of failsafe replication (not yet implemented)." msgstr "失敗保護器的狀態 (尚未套用)" -#: server_status.php:1412 +#: server_status.php:1413 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10836,11 +10837,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引" -#: server_status.php:1413 +#: server_status.php:1414 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量" -#: server_status.php:1414 +#: server_status.php:1415 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10848,7 +10849,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: server_status.php:1415 +#: server_status.php:1416 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10856,36 +10857,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: server_status.php:1416 +#: server_status.php:1417 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數" -#: server_status.php:1417 +#: server_status.php:1418 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的臨時表的數量" -#: server_status.php:1418 +#: server_status.php:1419 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "從 SQL 程序總共重試交易複製數" -#: server_status.php:1419 +#: server_status.php:1420 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器" -#: server_status.php:1420 +#: server_status.php:1421 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量" -#: server_status.php:1421 +#: server_status.php:1422 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多時間的查詢數" -#: server_status.php:1422 +#: server_status.php:1423 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -10894,23 +10895,23 @@ msgstr "" "排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值" -#: server_status.php:1423 +#: server_status.php:1424 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數" -#: server_status.php:1424 +#: server_status.php:1425 msgid "The number of sorted rows." msgstr "排序的行數" -#: server_status.php:1425 +#: server_status.php:1426 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數" -#: server_status.php:1426 +#: server_status.php:1427 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數" -#: server_status.php:1427 +#: server_status.php:1428 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10920,7 +10921,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用複製操作來分開表" -#: server_status.php:1428 +#: server_status.php:1429 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -10929,11 +10930,11 @@ msgstr "" "程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如" "果該值是紅色的,則應該增加 thread_cache_size 的值" -#: server_status.php:1429 +#: server_status.php:1430 msgid "The number of currently open connections." msgstr "目前開啟的連線數" -#: server_status.php:1430 +#: server_status.php:1431 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10943,75 +10944,75 @@ msgstr "" "目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 " "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" -#: server_status.php:1431 +#: server_status.php:1432 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "追蹤已停用" -#: server_status.php:1432 +#: server_status.php:1433 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量" -#: server_status.php:1578 +#: server_status.php:1583 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "文字框行" -#: server_status.php:1587 +#: server_status.php:1594 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1592 +#: server_status.php:1601 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1599 server_status.php:1670 +#: server_status.php:1608 server_status.php:1681 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "新增索引" -#: server_status.php:1601 +#: server_status.php:1610 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1605 +#: server_status.php:1614 #, fuzzy msgid "Refresh rate" msgstr "重新整理" -#: server_status.php:1610 +#: server_status.php:1619 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "文本框列" -#: server_status.php:1626 +#: server_status.php:1635 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "錯誤管理:" -#: server_status.php:1626 +#: server_status.php:1635 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1627 +#: server_status.php:1636 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "還原預設值" -#: server_status.php:1631 +#: server_status.php:1640 #, fuzzy msgid "Monitor Instructions" msgstr "資料" -#: server_status.php:1632 +#: server_status.php:1641 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11020,7 +11021,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1637 +#: server_status.php:1646 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11028,18 +11029,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1650 +#: server_status.php:1659 msgid "Using the monitor:" msgstr "" -#: server_status.php:1652 +#: server_status.php:1661 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1654 +#: server_status.php:1663 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11047,11 +11048,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1661 +#: server_status.php:1670 msgid "Please note:" msgstr "" -#: server_status.php:1663 +#: server_status.php:1672 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11059,104 +11060,104 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1675 +#: server_status.php:1686 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "刪除資料庫" -#: server_status.php:1679 +#: server_status.php:1690 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "查看從伺服器狀態" -#: server_status.php:1681 +#: server_status.php:1692 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "選擇表" -#: server_status.php:1683 +#: server_status.php:1694 msgid "Commonly monitored" msgstr "" -#: server_status.php:1698 +#: server_status.php:1709 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "無效的資料資料表名稱" -#: server_status.php:1702 +#: server_status.php:1713 msgid "Display as differential value" msgstr "" -#: server_status.php:1704 +#: server_status.php:1715 msgid "Apply a divisor" msgstr "" -#: server_status.php:1711 +#: server_status.php:1722 msgid "Append unit to data values" msgstr "" -#: server_status.php:1717 +#: server_status.php:1728 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "新增伺服器" -#: server_status.php:1719 +#: server_status.php:1730 msgid "Clear series" msgstr "" -#: server_status.php:1722 +#: server_status.php:1733 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL 查詢" -#: server_status.php:1735 +#: server_status.php:1748 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "顯示統計" -#: server_status.php:1736 +#: server_status.php:1749 #, fuzzy #| msgid "Select page" msgid "Selected time range:" msgstr "選擇頁" -#: server_status.php:1741 +#: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1746 +#: server_status.php:1759 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1751 +#: server_status.php:1764 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1753 +#: server_status.php:1766 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1758 +#: server_status.php:1771 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "查詢方式" -#: server_status.php:1807 +#: server_status.php:1822 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "秒" -#: server_status.php:1810 +#: server_status.php:1825 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11947,35 +11948,35 @@ msgstr "檢查引用完整性:" msgid "Showing tables" msgstr "顯示資料表" -#: tbl_printview.php:293 tbl_structure.php:832 +#: tbl_printview.php:293 tbl_structure.php:827 msgid "Space usage" msgstr "已用空間" -#: tbl_printview.php:320 tbl_structure.php:857 +#: tbl_printview.php:320 tbl_structure.php:852 msgid "Effective" msgstr "有效" -#: tbl_printview.php:345 tbl_structure.php:892 +#: tbl_printview.php:345 tbl_structure.php:887 msgid "Row Statistics" msgstr "行統計" -#: tbl_printview.php:355 tbl_structure.php:901 +#: tbl_printview.php:355 tbl_structure.php:896 msgid "static" msgstr "靜態" -#: tbl_printview.php:357 tbl_structure.php:903 +#: tbl_printview.php:357 tbl_structure.php:898 msgid "dynamic" msgstr "動態" -#: tbl_printview.php:381 tbl_structure.php:946 +#: tbl_printview.php:381 tbl_structure.php:941 msgid "Row length" msgstr "行長度" -#: tbl_printview.php:395 tbl_structure.php:954 +#: tbl_printview.php:395 tbl_structure.php:949 msgid "Row size" msgstr "行大小" -#: tbl_printview.php:405 tbl_structure.php:962 +#: tbl_printview.php:405 tbl_structure.php:957 msgid "Next autoindex" msgstr "" @@ -11998,7 +11999,7 @@ msgstr "不需要一個和外部鍵關聯一致的行內部關聯" msgid "Foreign key constraint" msgstr "外部鍵約束" -#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:600 msgid "Spatial" msgstr "" @@ -12052,53 +12053,53 @@ msgstr "已將 %s 設爲索引" msgid "Show more actions" msgstr "顯示更多操作" -#: tbl_structure.php:623 tbl_structure.php:688 +#: tbl_structure.php:618 tbl_structure.php:683 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "刪除欄位" -#: tbl_structure.php:624 +#: tbl_structure.php:619 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:650 +#: tbl_structure.php:645 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "列印預覽" -#: tbl_structure.php:667 +#: tbl_structure.php:662 msgid "Relation view" msgstr "關聯查看" -#: tbl_structure.php:675 +#: tbl_structure.php:670 msgid "Propose table structure" msgstr "規劃表結構" -#: tbl_structure.php:697 +#: tbl_structure.php:692 msgid "Add column" msgstr "新增欄位" -#: tbl_structure.php:711 +#: tbl_structure.php:706 msgid "At End of Table" msgstr "於表結尾" -#: tbl_structure.php:712 +#: tbl_structure.php:707 msgid "At Beginning of Table" msgstr "於表開頭" -#: tbl_structure.php:713 +#: tbl_structure.php:708 #, php-format msgid "After %s" msgstr "於 %s 之後" -#: tbl_structure.php:746 +#: tbl_structure.php:741 #, php-format msgid "Create an index on  %s columns" msgstr "在第 %s 個欄位建立索引" -#: tbl_structure.php:917 +#: tbl_structure.php:912 msgid "partitioned" msgstr "已分區" @@ -12636,8 +12637,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12772,8 +12773,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13988,8 +13989,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/server_databases.php b/server_databases.php index 44376b78e8..d31c07ce8a 100644 --- a/server_databases.php +++ b/server_databases.php @@ -296,11 +296,9 @@ if ($databases_count > 0) { if ($is_superuser || $cfg['AllowUserDropDatabase']) { $common_url_query = PMA_generate_common_url(array('sort_by' => $sort_by, 'sort_order' => $sort_order, 'dbstats' => $dbstats)); echo '' . __('With selected:') . '' . "\n" - . '' . "\n" - . ' ' . __('Check All') . ' / ' . "\n" - . '' . "\n" - . ' ' . __('Uncheck All') . '' . "\n" - . '' . __('With selected:') . '' . "\n"; + . ' ' + . ' ' + . '' . __('With selected:') . '' . "\n"; echo $common_functions->getButtonOrImage('drop_selected_dbs', 'mult_submit' . ($cfg['AjaxEnable'] ? ' ajax' : ''), 'drop_selected_dbs', __('Drop'), 'b_deltbl.png'); } diff --git a/server_privileges.php b/server_privileges.php index 3407e40675..fa9fb47b19 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -1892,7 +1892,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs foreach ($user as $host) { $index_checkbox++; echo ' ' . "\n" - . ' ' . "\n" - .'' - . __('Check All') . '' . "\n" - .'/' . "\n" - .'' - . __('Uncheck All') . '' . "\n" - .'' . __('With selected:') . '' . "\n"; + .' ' + .' ' + .'' . __('With selected:') . '' . "\n"; echo $common_functions->getButtonOrImage( 'submit_mult', 'mult_submit', 'submit_mult_export', diff --git a/tbl_change.php b/tbl_change.php index 33977d49be..4134e6ec15 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -155,7 +155,7 @@ if (! isset($where_clause)) { } //Retrieve values for data edit view list($insert_mode, $where_clauses, $result, $rows, $where_clause_array, $found_unique_key) - = PMA_getValuesForEditMode($where_clause, $table, $db); + = PMA_getStuffForEditMode($where_clause, $table, $db); // Copying a row - fetched data will be inserted as a new row, therefore the where clause is needless. if (isset($_REQUEST['default_action']) && $_REQUEST['default_action'] === 'insert') { @@ -191,16 +191,16 @@ $html_output .= ' $timestamp_seen = false; $columns_cnt = count($table_fields); -$tabindex = 0; +$tabindex = 0; $tabindex_for_function = +3000; $tabindex_for_null = +6000; $tabindex_for_value = 0; -$o_rows = 0; +$o_rows = 0; $biggest_max_file_size = 0; $url_params['db'] = $db; $url_params['table'] = $table; -$url_params = PMA_urlParamsInEditMode($url_params); +$url_params = PMA_urlParamsInEditMode($url_params, $where_clause_array, $where_clause); //Insert/Edit form $html_output .= 'addHTML($html_output); ?> diff --git a/tbl_operations.php b/tbl_operations.php index e22c11e6ff..66f687cd50 100644 --- a/tbl_operations.php +++ b/tbl_operations.php @@ -232,7 +232,7 @@ if (isset($result) && empty($message_to_show)) { $_message = $result ? $message = PMA_Message::success(__('Your SQL query has been executed successfully')) : PMA_Message::error(__('Error')); // $result should exist, regardless of $_message $_type = $result ? 'success' : 'error'; - if ($GLOBALS['ajax_request'] == true) { + if (isset($GLOBALS['ajax_request']) && $GLOBALS['ajax_request'] == true) { $response = PMA_Response::getInstance(); $response->isSuccess($_message->isSuccess()); $response->addJSON('message', $_message); diff --git a/tbl_relation.php b/tbl_relation.php index d1cd906b44..96e7942a0e 100644 --- a/tbl_relation.php +++ b/tbl_relation.php @@ -176,7 +176,7 @@ if (isset($destination) && $cfgRelation['relwork']) { . ' AND master_field = \'' . $common_functions->sqlAddSlashes($master_field) . '\''; } // end if... else.... if ($upd_query) { - PMA_query_as_controluser($upd_query); + PMA_queryAsControlUser($upd_query); } } // end while } // end if (updates for internal relations) @@ -322,7 +322,7 @@ if ($cfgRelation['displaywork'] && isset($display_field)) { } if ($upd_query) { - PMA_query_as_controluser($upd_query); + PMA_queryAsControlUser($upd_query); } } // end if diff --git a/tbl_replace.php b/tbl_replace.php index 9184a8d422..49fb0523bd 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -118,6 +118,10 @@ $gis_from_wkb_functions = array( 'MPolyFromWKB', ); +// to create an object of PMA_File class +require_once './libraries/File.class.php'; + +$query_fields = array(); foreach ($loop_array as $rownumber => $where_clause) { // skip fields to be ignored if (! $using_key && isset($_REQUEST['insert_ignore_' . $where_clause])) { @@ -161,18 +165,6 @@ foreach ($loop_array as $rownumber => $where_clause) { ? $_REQUEST['auto_increment']['multi_edit'][$rownumber] : null; - // Fetch the current values of a row to use in case we have a protected field - // @todo possibly move to ./libraries/tbl_replace_fields.inc.php - if ($is_insert - && $using_key && isset($multi_edit_columns_type) - && is_array($multi_edit_columns_type) && isset($where_clause) - ) { - $prot_row = PMA_DBI_fetch_single_row( - 'SELECT * FROM ' . $common_functions->backquote($table) - . ' WHERE ' . $where_clause . ';' - ); - } - // When a select field is nullified, it's not present in $_REQUEST // so initialize it; this way, the foreach($multi_edit_colummns) will process it foreach ($multi_edit_columns_name as $key => $val) { @@ -181,78 +173,46 @@ foreach ($loop_array as $rownumber => $where_clause) { } } - // Iterate in the order of $multi_edit_columns_name, - // not $multi_edit_colummns, to avoid problems - // when inserting multiple entries + // Iterate in the order of $multi_edit_columns_name, not $multi_edit_colummns, + // to avoid problems when inserting multiple entries foreach ($multi_edit_columns_name as $key => $colummn_name) { - $val = $multi_edit_colummns[$key]; + $current_value = $multi_edit_colummns[$key]; + // Note: $key is an md5 of the fieldname. The actual fieldname is + // available in $multi_edit_columns_name[$key] - // Note: $key is an md5 of the fieldname. - //The actual fieldname is available in $multi_edit_columns_name[$key] + $file_to_insert = new PMA_File(); + $file_to_insert->checkTblChangeForm($key, $rownumber); - include 'libraries/tbl_replace_fields.inc.php'; + $possibly_uploaded_val = $file_to_insert->getContent(); - if (empty($multi_edit_funcs[$key])) { - $cur_value = $val; - } elseif ('UUID' === $multi_edit_funcs[$key]) { - /* This way user will know what UUID new row has */ - $uuid = PMA_DBI_fetch_value('SELECT UUID()'); - $cur_value = "'" . $uuid . "'"; - } elseif ((in_array($multi_edit_funcs[$key], $gis_from_text_functions) - && substr($val, 0, 3) == "'''") - || in_array($multi_edit_funcs[$key], $gis_from_wkb_functions) - ) { - // Remove enclosing apostrophes - $val = substr($val, 1, strlen($val) - 2); - // Remove escaping apostrophes - $val = str_replace("''", "'", $val); - $cur_value = $multi_edit_funcs[$key] . '(' . $val . ')'; - } elseif (! in_array($multi_edit_funcs[$key], $func_no_param) - || ($val != "''" && in_array($multi_edit_funcs[$key], $func_optional_param)) - ) { - $cur_value = $multi_edit_funcs[$key] . '(' . $val . ')'; - } else { - $cur_value = $multi_edit_funcs[$key] . '()'; + if ($file_to_insert->isError()) { + $message .= $file_to_insert->getError(); } + // delete $file_to_insert temporary variable + $file_to_insert->cleanUp(); - // i n s e r t - if ($is_insert) { - // no need to add column into the valuelist - if (strlen($cur_value)) { - $query_values[] = $cur_value; - // first inserted row so prepare the list of fields - if (empty($value_sets)) { - $query_fields[] = $common_functions->backquote($multi_edit_columns_name[$key]); - } - } - } elseif (! empty($multi_edit_columns_null_prev[$key]) - && ! isset($multi_edit_columns_null[$key]) - ) { - // u p d a t e + $current_value = PMA_getCurrentValueForDifferentTypes( + $possibly_uploaded_val, $key, $multi_edit_columns_type, + $current_value, $multi_edit_auto_increment, + $rownumber, $multi_edit_columns_name, $multi_edit_columns_null, + $multi_edit_columns_null_prev, $is_insert, + $using_key, $where_clause, $table + ); - // field had the null checkbox before the update - // field no longer has the null checkbox - $query_values[] = $common_functions->backquote( - $multi_edit_columns_name[$key] - ) . ' = ' . $cur_value; - } elseif (empty($multi_edit_funcs[$key]) - && isset($multi_edit_columns_prev[$key]) - && ("'" . $common_functions->sqlAddSlashes($multi_edit_columns_prev[$key]) . "'" == $val)) { - // No change for this column and no MySQL function is used -> next column - continue; - } elseif (! empty($val)) { - // avoid setting a field to NULL when it's already NULL - // (field had the null checkbox before the update - // field still has the null checkbox) - if (empty($multi_edit_columns_null_prev[$key]) - || empty($multi_edit_columns_null[$key]) - ) { - $query_values[] = $common_functions->backquote( - $multi_edit_columns_name[$key] - ) . ' = ' . $cur_value; - } - } - } // end foreach ($multi_edit_colummns as $key => $val) + $current_value_as_an_array = PMA_getCurrentValueAsAnArrayForMultipleEdit( + $multi_edit_colummns, $multi_edit_columns_name, $multi_edit_funcs, + $gis_from_text_functions, $current_value, $gis_from_wkb_functions, + $func_optional_param, $func_no_param, $key + ); + + list($query_values, $query_fields) + = PMA_getQueryValuesForInsertAndUpdateInMultipleEdit( + $multi_edit_columns_name, $multi_edit_columns_null, $current_value, + $multi_edit_columns_prev, $multi_edit_funcs, $is_insert, + $query_values, $query_fields, $current_value_as_an_array, + $value_sets, $key, $multi_edit_columns_null_prev + ); + } //end of foreach if (count($query_values) > 0) { if ($is_insert) { @@ -264,15 +224,13 @@ foreach ($loop_array as $rownumber => $where_clause) { . ' SET ' . implode(', ', $query_values) . ' WHERE ' . $where_clause . ($_REQUEST['clause_is_unique'] ? '' : ' LIMIT 1'); - } } } // end foreach ($loop_array as $where_clause) unset($multi_edit_columns_name, $multi_edit_columns_prev, $multi_edit_funcs, $multi_edit_columns_type, $multi_edit_columns_null, $func_no_param, - $multi_edit_auto_increment, $cur_value, $key, $val, $loop_array, $where_clause, - $using_key, $multi_edit_columns_null_prev); - + $multi_edit_auto_increment, $current_value_as_an_array, $key, $current_value, + $loop_array, $where_clause, $using_key, $multi_edit_columns_null_prev); // Builds the sql query if ($is_insert && count($value_sets) > 0) { @@ -293,7 +251,8 @@ unset($multi_edit_colummns, $is_insertignore); * page */ list ($url_params, $total_affected_rows, $last_messages, $warning_messages, - $error_messages, $return_to_sql_query) = PMA_executeSqlQuery($url_params, $query); + $error_messages, $return_to_sql_query) + = PMA_executeSqlQuery($url_params, $query); if ($is_insert && count($value_sets) > 0) { $message = PMA_Message::inserted_rows($total_affected_rows); @@ -316,7 +275,7 @@ unset( $last_messages, $last_message ); -if ($GLOBALS['is_ajax_request'] == true) { +if ($response->isAjax()) { /** * If we are in grid editing, we need to process the relational and * transformed fields, if they were edited. After that, output the correct @@ -329,76 +288,24 @@ if ($GLOBALS['is_ajax_request'] == true) { $map = PMA_getForeigners($db, $table, '', 'both'); - $rel_fields = array(); - parse_str($_REQUEST['rel_fields_list'], $rel_fields); + $relation_fields = array(); + parse_str($_REQUEST['rel_fields_list'], $relation_fields); // loop for each relation cell - foreach ( $rel_fields as $cell_index => $curr_cell_rel_field) { - - foreach ( $curr_cell_rel_field as $rel_field => $rel_field_value) { - - $where_comparison = "='" . $rel_field_value . "'"; - $display_field = PMA_getDisplayField( - $map[$rel_field]['foreign_db'], - $map[$rel_field]['foreign_table'] + foreach ($relation_fields as $cell_index => $curr_cell_rel_field) { + foreach ($curr_cell_rel_field as $relation_field => $relation_field_value) { + $where_comparison = "='" . $relation_field_value . "'"; + $dispval = PMA_getDisplayValueForForeignTableColumn( + $where_comparison, $relation_field_value, $map, $relation_field ); - // Field to display from the foreign table? - if (isset($display_field) && strlen($display_field)) { - $dispsql = 'SELECT ' . $common_functions->backquote($display_field) - . ' FROM ' . $common_functions->backquote($map[$rel_field]['foreign_db']) - . '.' . $common_functions->backquote($map[$rel_field]['foreign_table']) - . ' WHERE ' . $common_functions->backquote($map[$rel_field]['foreign_field']) - . $where_comparison; - $dispresult = PMA_DBI_try_query($dispsql, null, PMA_DBI_QUERY_STORE); - if ($dispresult && PMA_DBI_num_rows($dispresult) > 0) { - list($dispval) = PMA_DBI_fetch_row($dispresult, 0); - } else { - //$dispval = __('Link not found'); - } - @PMA_DBI_free_result($dispresult); - } else { - $dispval = ''; - } // end if... else... - - if ('K' == $_SESSION['tmp_user_values']['relational_display']) { - // user chose "relational key" in the display options, so - // the title contains the display field - $title = (! empty($dispval)) - ? ' title="' . htmlspecialchars($dispval) . '"' - : ''; - } else { - $title = ' title="' . htmlspecialchars($rel_field_value) . '"'; - } - - $_url_params = array( - 'db' => $map[$rel_field]['foreign_db'], - 'table' => $map[$rel_field]['foreign_table'], - 'pos' => '0', - 'sql_query' => 'SELECT * FROM ' - . $common_functions->backquote($map[$rel_field]['foreign_db']) - . '.' - . $common_functions->backquote($map[$rel_field]['foreign_table']) - . ' WHERE ' - . $common_functions->backquote($map[$rel_field]['foreign_field']) - . $where_comparison + $extra_data['relations'][$cell_index] = PMA_getLinkForRelationalDisplayField( + $map, $relation_field, $where_comparison, + $dispval, $relation_field_value ); - $output = ''; - - if ('D' == $_SESSION['tmp_user_values']['relational_display']) { - // user chose "relational display field" in the - // display options, so show display field in the cell - $output .= (! empty($dispval)) ? htmlspecialchars($dispval) : ''; - } else { - // otherwise display data in the cell - $output .= htmlspecialchars($rel_field_value); - } - $output .= ''; - $extra_data['relations'][$cell_index] = $output; } } // end of loop for each relation cell } - if (isset($_REQUEST['do_transformations']) && $_REQUEST['do_transformations'] == true ) { @@ -409,55 +316,27 @@ if ($GLOBALS['is_ajax_request'] == true) { if ($mime_map === false) { $mime_map = array(); } - $edited_values = array(); parse_str($_REQUEST['transform_fields_list'], $edited_values); foreach ($mime_map as $transformation) { $include_file = PMA_securePath($transformation['transformation']); $column_name = $transformation['column_name']; - - foreach ($edited_values as $cell_index => $curr_cell_edited_values) { - if (isset($curr_cell_edited_values[$column_name])) { - $column_data = $curr_cell_edited_values[$column_name]; - - $_url_params = array( - 'db' => $db, - 'table' => $table, - 'where_clause' => $_REQUEST['where_clause'], - 'transform_key' => $column_name, - ); - - if (file_exists('libraries/transformations/' . $include_file)) { - $transformfunction_name = str_replace( - '.inc.php', '', $transformation['transformation'] - ); - - include_once 'libraries/transformations/' . $include_file; - - if (function_exists('PMA_transformation_' . $transformfunction_name)) { - $transform_function = 'PMA_transformation_' . $transformfunction_name; - $transform_options = PMA_transformation_getOptions( - isset($transformation['transformation_options']) - ? $transformation['transformation_options'] : '' - ); - $transform_options['wrapper_link'] = PMA_generate_common_url($_url_params); - } - } - - $extra_data['transformations'][$cell_index] = $transform_function( - $column_data, $transform_options - ); - } - } // end of loop for each transformation cell + $extra_data = PMA_getTransformationFunctionAndTransformationOptions( + $db, $table, $transformation, $edited_values, $include_file, + $column_name, $extra_data, $include_file + ); } // end of loop for each $mime_map } /**Get the total row count of the table*/ - $extra_data['row_count'] = PMA_Table::countRecords($_REQUEST['db'], $_REQUEST['table']); - $extra_data['sql_query'] = $common_functions->getMessage($message, $GLOBALS['display_query']); + $extra_data['row_count'] = PMA_Table::countRecords( + $_REQUEST['db'], $_REQUEST['table'] + ); + + $extra_data['sql_query'] + = $common_functions->getMessage($message, $GLOBALS['display_query']); - $response = PMA_Response::getInstance(); $response->isSuccess($message->isSuccess()); $response->addJSON('message', $message); $response->addJSON($extra_data); diff --git a/tbl_structure.php b/tbl_structure.php index 04198ca68a..37e0ca76ad 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -335,7 +335,7 @@ foreach ($fields as $row) { ?> - /> + /> @@ -560,15 +560,10 @@ $checkall_url = 'tbl_structure.php?' . PMA_generate_common_url($db, $table); <?php echo __('With selected:'); ?> - - -/ - - + + - + getButtonOrImage( diff --git a/tbl_tracking.php b/tbl_tracking.php index 93f6e08b6e..962ce22738 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -663,7 +663,7 @@ $sql_query = " SELECT DISTINCT db_name, table_name FROM " . " WHERE db_name = '" . $common_functions->sqlAddSlashes($GLOBALS['db']) . "' " . " ORDER BY db_name, table_name"; -$sql_result = PMA_query_as_controluser($sql_query); +$sql_result = PMA_queryAsControlUser($sql_query); if (PMA_DBI_num_rows($sql_result) > 0) { ?> @@ -704,7 +704,7 @@ $sql_query = " SELECT * FROM " . " AND table_name = '" . $common_functions->sqlAddSlashes($_REQUEST['table']) ."' ". " ORDER BY version DESC "; -$sql_result = PMA_query_as_controluser($sql_query); +$sql_result = PMA_queryAsControlUser($sql_query); $last_version = 0; $maxversion = PMA_DBI_fetch_array($sql_result); diff --git a/test/libraries/core/PMA_fatalError_test.php b/test/libraries/core/PMA_fatalError_test.php index dc4777f15d..d50ec533f7 100644 --- a/test/libraries/core/PMA_fatalError_test.php +++ b/test/libraries/core/PMA_fatalError_test.php @@ -12,15 +12,38 @@ /* * Include to test. */ -require_once 'libraries/select_lang.lib.php'; +require_once 'libraries/vendor_config.php'; require_once 'libraries/core.lib.php'; +require_once 'libraries/common.lib.php'; +require_once 'libraries/js_escape.lib.php'; +require_once 'libraries/select_lang.lib.php'; require_once 'libraries/sanitizing.lib.php'; require_once 'libraries/Config.class.php'; -require_once 'libraries/vendor_config.php'; +require_once 'libraries/url_generating.lib.php'; +require_once 'libraries/Theme.class.php'; +require_once 'libraries/Table.class.php'; require_once 'libraries/php-gettext/gettext.inc'; class PMA_fatalError_test extends PHPUnit_Framework_TestCase { + public function setup() + { + $GLOBALS['PMA_Config'] = new PMA_Config(); + $GLOBALS['PMA_Config']->enableBc(); + $GLOBALS['cfg']['Server'] = array( + 'host' => 'host', + 'verbose' => 'verbose', + ); + $GLOBALS['cfg']['OBGzip'] = false; + $_SESSION['PMA_Theme'] = new PMA_Theme(); + $_SESSION[' PMA_token '] = 'token'; + $GLOBALS['pmaThemeImage'] = 'theme/'; + $GLOBALS['pmaThemePath'] = $_SESSION['PMA_Theme']->getPath(); + $GLOBALS['server'] = 1; + $GLOBALS['db'] = ''; + $GLOBALS['table'] = ''; + } + public function testFatalErrorMessage() { $this->expectOutputRegex("/FatalError!/"); @@ -42,4 +65,4 @@ class PMA_fatalError_test extends PHPUnit_Framework_TestCase PMA_fatalError($message, $params); } -} \ No newline at end of file +} diff --git a/themes/original/css/navigation.css.php b/themes/original/css/navigation.css.php index 4d04df07d4..8c2fdf98a1 100644 --- a/themes/original/css/navigation.css.php +++ b/themes/original/css/navigation.css.php @@ -208,18 +208,16 @@ body#body_leftFrame { #body_leftFrame #clear_fast_filter, #body_leftFrame #clear_fast_db_filter { - background: white; color: black; cursor: pointer; padding: 0; margin: 3px 5px 0 -23px; - position: relative; float: right; } #body_leftFrame #fast_filter, #body_leftFrame #fast_db_filter { - width: 100%; + width: 90%; padding: 2px 0; margin: 0; border: 0; diff --git a/themes/pmahomme/css/navigation.css.php b/themes/pmahomme/css/navigation.css.php index be681bf8ef..048c5de06a 100644 --- a/themes/pmahomme/css/navigation.css.php +++ b/themes/pmahomme/css/navigation.css.php @@ -260,19 +260,24 @@ body#body_leftFrame { #body_leftFrame #clear_fast_filter, #body_leftFrame #clear_fast_db_filter { - background: white; color: black; cursor: pointer; padding: 0; margin: 0; - position: relative; - right: 3ex; } -#body_leftFrame #fast_filter, +#body_leftFrame #fast_filter { + width: 85%; + padding: .1em; + margin-right: 0; + margin-left: 0; +} + #body_leftFrame #fast_db_filter { width: 85%; padding: .1em; + margin-right: 0; + margin-left: 10px; } #body_leftFrame #fast_filter.gray, diff --git a/webapp.php b/webapp.php index 89bdc58bbb..0fd55259b5 100644 --- a/webapp.php +++ b/webapp.php @@ -47,7 +47,7 @@ foreach ($parameters as $key => $value) { PMA_downloadHeader($name, 'application/webapp', 0, false); -$zip = new zipfile; +$zip = new ZipFile; $zip->setDoWrite(); $zip->addFile($ini_file, 'webapp.ini'); $zip->addFile(file_get_contents($icon), 'phpMyAdmin.ico');